:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --secondary: #e67e22;
    --secondary-dark: #d35400;
    --dark: #1a202c;
    --gray-900: #2d3748;
    --gray-700: #4a5568;
    --gray-500: #718096;
    --gray-300: #cbd5e0;
    --gray-100: #f7fafc;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --radius: 8px;
    --radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
}

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

ul {
    list-style: none;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
}

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

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

.btn-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    width: fit-content;
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    width: fit-content;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--secondary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    border: 2px solid var(--secondary);
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-light {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-light:hover {
    transform: translateY(-2px);
}

.section-features {
    padding: 5rem 5%;
    background: var(--gray-100);
}

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

.feature-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.split-section {
    display: flex;
    min-height: 500px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-label {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.split-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.split-content p {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.check-list {
    margin-bottom: 2rem;
}

.check-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--gray-700);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.services-preview {
    padding: 5rem 5%;
    background: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.services-header p {
    color: var(--gray-700);
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border: 2px solid var(--secondary);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-body {
    padding: 1.5rem;
}

.service-body h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.service-body p {
    color: var(--gray-700);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonials-section {
    padding: 5rem 5%;
    background: var(--gray-100);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-content p {
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--primary);
}

.author-location {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.process-section {
    padding: 5rem 5%;
    background: var(--white);
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.process-header p {
    color: var(--gray-700);
}

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

.process-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.process-step h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 5rem 5%;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.coverage-section {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.coverage-content {
    flex: 1;
    min-width: 300px;
}

.coverage-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.coverage-content p {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.coverage-tags span {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.coverage-visual {
    flex: 1;
    min-width: 300px;
}

.coverage-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-section {
    padding: 5rem 5%;
    background: var(--gray-100);
}

.form-wrapper {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.form-info {
    flex: 1;
    min-width: 280px;
}

.form-info h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.form-info p {
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.form-benefits {
    margin-bottom: 2rem;
}

.form-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--gray-700);
}

.form-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.contact-form {
    flex: 1;
    min-width: 320px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-submit {
    width: 100%;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--secondary-dark);
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 4rem;
}

.footer-main {
    display: flex;
    gap: 4rem;
    padding: 0 5% 3rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1.5;
    min-width: 250px;
}

.footer-logo {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-500);
    max-width: 300px;
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    min-width: 150px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--gray-500);
    transition: color 0.3s;
    font-size: 0.9375rem;
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-col li {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding: 1.5rem 5%;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
}

.sticky-btn {
    display: block;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s, background 0.3s;
}

.sticky-btn:hover {
    background: var(--secondary-dark);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 1.5rem 5%;
    z-index: 200;
    display: none;
}

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

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

.cookie-content p {
    color: var(--white);
    flex: 1;
    min-width: 200px;
}

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

.cookie-accept {
    background: var(--secondary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept:hover {
    background: var(--secondary-dark);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--gray-500);
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.3s;
}

.cookie-reject:hover {
    border-color: var(--white);
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 6rem 5%;
    text-align: center;
}

.page-header-tall {
    padding: 8rem 5%;
}

.page-header-simple {
    padding: 4rem 5%;
}

.page-header-content h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.page-header-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
}

.services-intro {
    padding: 4rem 5%;
    background: var(--white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    color: var(--gray-700);
    font-size: 1.125rem;
}

.service-detail {
    display: flex;
    min-height: 600px;
    border-bottom: 1px solid var(--gray-300);
}

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

.service-detail-content {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.service-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.service-detail-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature h4 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.feature ul {
    list-style: disc;
    padding-left: 1.25rem;
}

.feature li {
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.service-pricing {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.price-card {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    min-width: 140px;
}

.price-card h4 {
    color: var(--gray-700);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.price-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.price-note {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.additional-services {
    padding: 5rem 5%;
    background: var(--gray-100);
}

.additional-header {
    text-align: center;
    margin-bottom: 3rem;
}

.additional-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
}

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

.additional-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.additional-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.additional-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.additional-card h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.additional-card p {
    color: var(--gray-700);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.additional-price {
    font-weight: 700;
    color: var(--secondary);
}

.about-intro {
    padding: 5rem 5%;
    background: var(--white);
}

.about-intro-content {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.values-section {
    padding: 5rem 5%;
    background: var(--gray-100);
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
}

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

.value-card {
    flex: 1;
    min-width: 220px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 4rem 5%;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
}

.team-section {
    padding: 5rem 5%;
    background: var(--white);
}

.team-header {
    text-align: center;
    margin-bottom: 2rem;
}

.team-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.team-header p {
    color: var(--gray-700);
}

.team-content {
    max-width: 800px;
    margin: 0 auto;
}

.team-content p {
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.contact-section {
    padding: 4rem 5%;
    background: var(--white);
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-cards {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-detail h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: var(--gray-700);
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.contact-note {
    background: var(--secondary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.contact-note p {
    margin: 0;
}

.map-section {
    height: 400px;
    background: var(--gray-300);
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-300) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.map-overlay span {
    color: var(--primary);
    font-weight: 600;
}

.faq-section {
    padding: 5rem 5%;
    background: var(--gray-100);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.thanks-section {
    padding: 8rem 5%;
    text-align: center;
    background: var(--white);
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.thanks-content h1 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.thanks-service {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.thanks-content p {
    color: var(--gray-700);
    margin-bottom: 1rem;
}

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

.thanks-info {
    padding: 4rem 5%;
    background: var(--gray-100);
}

.info-cards {
    display: flex;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: disc;
    padding-left: 1.25rem;
}

.info-card li {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--gray-700);
}

.legal-content {
    padding: 4rem 5%;
    background: var(--white);
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-updated {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.legal-wrapper h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-wrapper h3 {
    font-size: 1.125rem;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-wrapper p {
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.legal-wrapper ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-wrapper li {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 2rem;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--gray-300);
    padding: 0.75rem;
    text-align: left;
}

.cookie-table th {
    background: var(--gray-100);
    color: var(--primary);
}

.cookie-table td {
    color: var(--gray-700);
}

.inline-cta {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 5%;
        gap: 0;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--gray-300);
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-visual {
        height: 300px;
    }

    .split-section,
    .split-section.reverse {
        flex-direction: column;
    }

    .split-image {
        height: 300px;
    }

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

    .service-detail-image {
        height: 300px;
    }

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

    .sticky-btn {
        text-align: center;
    }

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