/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0ea5e9;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    font-weight: 500;
    color: #4b5563;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #0ea5e9;
}

.nav-cta {
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: #0284c7;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    background: #0ea5e9;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

.cta-secondary {
    display: inline-block;
    background: #f3f4f6;
    color: #0ea5e9;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid #e5e7eb;
}

.cta-secondary:hover {
    background: #e5e7eb;
    border-color: #0ea5e9;
}

.link-cta {
    color: #0ea5e9;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.link-cta:hover {
    color: #0284c7;
}

/* Trust Split Section */
.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    align-items: center;
}

.trust-visual {
    flex: 1;
}

.trust-visual img {
    width: 100%;
    object-fit: cover;
}

.trust-content {
    flex: 1;
    padding: 3rem;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.trust-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.2rem;
}

/* Why Choose Section */
.why-choose {
    background: #f9fafb;
    padding: 5rem 2rem;
}

.why-content {
    max-width: 1200px;
    margin: 0 auto;
}

.why-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

.reasons-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.reason-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.reason-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #0ea5e9;
}

.reason-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* Services Preview Split */
.services-preview-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    align-items: center;
}

.services-text {
    flex: 1;
    padding: 3rem;
}

.services-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.services-text p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.services-visual {
    flex: 1;
}

.services-visual img {
    width: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials-section {
    background: #ecfeff;
    padding: 5rem 2rem;
}

.testimonials-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

.testimonials-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #0ea5e9;
}

/* CTA Centered Section */
.cta-centered {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #ffffff;
}

.cta-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-centered p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-centered .cta-primary {
    background: #ffffff;
    color: #0ea5e9;
}

.cta-centered .cta-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

/* Services Selector Section */
.services-selector {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.selector-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.selector-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #111827;
}

.selector-header p {
    font-size: 1.15rem;
    color: #6b7280;
}

/* Booking Form */
.booking-form {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-split {
    display: flex;
}

.form-left,
.form-right {
    flex: 1;
    padding: 3rem;
}

.form-left {
    background: #f9fafb;
    border-right: 1px solid #e5e7eb;
}

.form-left h3,
.form-right h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

/* Service Options */
.service-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-option {
    display: block;
    cursor: pointer;
}

.service-option input[type="radio"] {
    display: none;
}

.service-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s;
}

.service-option input[type="radio"]:checked + .service-info {
    border-color: #0ea5e9;
    background: #f0f9ff;
}

.service-option:hover .service-info {
    border-color: #0ea5e9;
}

.service-name {
    font-weight: 600;
    color: #374151;
}

.service-price {
    font-weight: 700;
    color: #0ea5e9;
    font-size: 1.1rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
}

.submit-btn {
    width: 100%;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #0284c7;
    transform: translateY(-2px);
}

.form-privacy {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
}

.form-privacy a {
    color: #0ea5e9;
    text-decoration: underline;
}

/* Final Push Split */
.final-push-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    align-items: center;
}

.final-content {
    flex: 1;
    padding: 3rem;
}

.final-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.final-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.final-visual {
    flex: 1;
}

.final-visual img {
    width: 100%;
    object-fit: cover;
}

/* Footer */
.main-footer {
    background: #111827;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #0ea5e9;
}

.footer-col p,
.footer-col li {
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.footer-col a {
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #0ea5e9;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
}

.cookie-content a {
    color: #0ea5e9;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: #0ea5e9;
    color: #ffffff;
}

.btn-accept:hover {
    background: #0284c7;
}

.btn-reject {
    background: #374151;
    color: #ffffff;
}

.btn-reject:hover {
    background: #4b5563;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1500;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta a {
    display: block;
    background: #0ea5e9;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    background: #0284c7;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.5);
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    min-height: 400px;
    align-items: center;
}

.page-hero-content {
    flex: 1;
    padding: 3rem;
}

.page-hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #111827;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #6b7280;
}

.page-hero-visual {
    flex: 1;
}

.page-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Story Split */
.story-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    align-items: center;
}

.story-visual {
    flex: 1;
}

.story-visual img {
    width: 100%;
    object-fit: cover;
}

.story-content {
    flex: 1;
    padding: 3rem;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.story-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.2rem;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.values-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0ea5e9;
}

.value-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Team Split */
.team-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    align-items: center;
}

.team-content {
    flex: 1;
    padding: 3rem;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.team-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.team-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item strong {
    display: block;
    font-size: 1.2rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: #6b7280;
    margin: 0;
}

.team-visual {
    flex: 1;
}

.team-visual img {
    width: 100%;
    object-fit: cover;
}

/* Technology Section */
.technology-section {
    padding: 5rem 2rem;
    background: #ecfeff;
}

.technology-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

.tech-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.tech-item {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tech-item img {
    width: 40%;
    object-fit: cover;
}

.tech-info {
    flex: 1;
    padding: 2rem;
}

.tech-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0ea5e9;
}

.tech-info p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
}

/* Services Detail Section */
.services-detail-section {
    padding: 3rem 0;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    align-items: center;
    gap: 0;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #111827;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.service-benefits {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-benefits li {
    font-size: 1.05rem;
    color: #374151;
    margin-bottom: 0.7rem;
}

.service-detail-visual {
    flex: 1;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pricing Overview */
.pricing-overview {
    max-width: 900px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    background: #f9fafb;
    border-radius: 12px;
}

.pricing-overview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #111827;
}

.pricing-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing-service {
    font-weight: 600;
    color: #374151;
}

.pricing-amount {
    font-weight: 700;
    color: #0ea5e9;
    font-size: 1.2rem;
}

.pricing-note {
    margin-top: 2rem;
    text-align: center;
    color: #6b7280;
    font-style: italic;
}

/* Contact Info Split */
.contact-info-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 3rem;
}

.contact-details {
    flex: 1;
    padding: 2rem;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #111827;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #0ea5e9;
}

.contact-item p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
}

.contact-item a {
    color: #0ea5e9;
    text-decoration: underline;
}

.contact-map {
    flex: 1;
    padding: 2rem;
}

.contact-map img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.map-note {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
}

/* Location Benefits */
.location-benefits {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.location-benefits h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #0ea5e9;
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* Visit CTA Split */
.visit-cta-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    align-items: center;
}

.visit-content {
    flex: 1;
    padding: 3rem;
}

.visit-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.visit-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.visit-visual {
    flex: 1;
}

.visit-visual img {
    width: 100%;
    object-fit: cover;
}

/* Thanks Page */
.thanks-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
}

.thanks-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.thanks-message {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.selected-service {
    margin: 2rem 0;
}

.selected-service-text {
    font-size: 1.15rem;
    color: #374151;
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #0ea5e9;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #111827;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #0ea5e9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Thanks Info Split */
.thanks-info-split {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
}

.info-block {
    flex: 1;
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0ea5e9;
}

.info-block p {
    color: #4b5563;
    line-height: 1.7;
}

.info-block a {
    color: #0ea5e9;
    text-decoration: underline;
}

/* Legal Page */
.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 3rem 2rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #111827;
}

.legal-updated {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #374151;
}

.legal-content p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #0ea5e9;
    text-decoration: underline;
}

.legal-content strong {
    color: #111827;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 1rem;
    }

    .hero-split,
    .trust-split,
    .services-preview-split,
    .final-push-split,
    .page-hero-split,
    .story-split,
    .team-split,
    .service-detail-split,
    .contact-info-split,
    .visit-cta-split {
        flex-direction: column;
    }

    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .trust-content,
    .services-text,
    .final-content,
    .page-hero-content,
    .story-content,
    .team-content,
    .service-detail-content,
    .contact-details,
    .visit-content {
        padding: 2rem;
    }

    .hero-content h1,
    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .form-split {
        flex-direction: column;
    }

    .form-left {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .testimonials-split,
    .thanks-info-split {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .tech-item {
        flex-direction: column;
    }

    .tech-item img {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }
}
