:root {
    --navy: #0A1628;
    --coral: #FF6B5A;
    --light-gray: #F5F5F7;
    --medium-gray: #8E8E93;
    --dark-gray: #1C1C1E;
    --white: #FFFFFF;
    
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 8px 32px rgba(10, 22, 40, 0.16);
    --shadow-xl: 0 16px 48px rgba(10, 22, 40, 0.24);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--dark-gray);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--coral);
    z-index: 10000;
    transition: width 0.1s ease;
    width: 0;
}

#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

#main-nav.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--navy);
    font-weight: 700;
    font-size: 1.25rem;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

#mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

#mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--coral);
}

.nav-menu a.nav-cta {
    background: var(--coral);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.nav-menu a.nav-cta:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.has-mega {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-md);
    padding: 2rem;
    min-width: 500px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 1rem;
    z-index: 100;
}

.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.mega-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mega-column {
    text-align: center;
}

.mega-column i {
    font-size: 2rem;
    color: var(--coral);
    margin-bottom: 0.75rem;
}

.mega-column h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.mega-column p {
    font-size: 0.875rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--coral) 0%, var(--navy) 100%);
    opacity: 0.05;
    z-index: 0;
    border-radius: 0 0 0 100px;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--coral);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-highlight {
    color: var(--coral);
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.3s backwards;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--coral);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stat-text {
    font-size: 0.875rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.3;
}

.hero-image-container {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s backwards;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.overlap-section {
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.overlap-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.overlap-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.3);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--coral);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.overlap-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.overlap-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.content-section {
    padding: 6rem 0;
}

.content-section.bg-light {
    background: var(--light-gray);
}

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

.section-badge {
    display: inline-block;
    background: var(--coral);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.process-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: var(--delay);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--coral);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.process-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.process-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-top: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--coral);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.image-text-section {
    padding: 6rem 0;
}

.image-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-text-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.image-text-content p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.image-text-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.cta-section {
    padding: 6rem 0;
}

.cta-card {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: var(--shadow-xl);
}

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

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.site-footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-split {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-cta-btn {
    display: inline-block;
    background: var(--coral);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-cta-btn:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--coral);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(10, 22, 40, 0.15);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.cookie-content a {
    color: var(--coral);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.875rem;
}

.cookie-accept {
    background: var(--coral);
    color: var(--white);
}

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

.cookie-reject {
    background: var(--light-gray);
    color: var(--navy);
}

.cookie-reject:hover {
    background: var(--medium-gray);
    color: var(--white);
}

.cookie-customize {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--navy);
}

.cookie-customize:hover {
    background: var(--navy);
    color: var(--white);
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-xl);
}

.cookie-modal-content h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cookie-category {
    margin-bottom: 1rem;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    transition: background 0.3s ease;
}

.cookie-category label:hover {
    background: var(--light-gray);
}

.cookie-category input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.page-header {
    background: var(--navy);
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--coral) 0%, transparent 100%);
    opacity: 0.1;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.page-badge {
    display: inline-block;
    background: var(--coral);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.text-content-block {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.text-content-block h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.text-content-block p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.styled-list {
    list-style: none;
    margin: 1.5rem 0;
}

.styled-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.styled-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: 700;
}

.image-block {
    margin: 3rem 0;
}

.image-block img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.approach-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.approach-icon {
    width: 56px;
    height: 56px;
    background: var(--coral);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.approach-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.principles-list {
    max-width: 1000px;
    margin: 0 auto;
}

.principle-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.principle-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--coral);
    opacity: 0.3;
    flex-shrink: 0;
}

.principle-content h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.principle-content p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.column-content p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.column-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.services-grid {
    display: grid;
    gap: 3rem;
}

.service-card-large {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.service-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon-large {
    width: 72px;
    height: 72px;
    background: var(--coral);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.service-card-large h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card-large > p {
    font-size: 1.125rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-details h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.service-details ul {
    list-style: none;
    margin: 1rem 0;
}

.service-details ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.service-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: 700;
}

.service-details p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-top: 1rem;
}

.service-card-large img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-top: 2rem;
}

.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.additional-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.additional-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.additional-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.additional-card h3 i {
    color: var(--coral);
}

.additional-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.timeline-section {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-section h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.timeline-intro {
    text-align: center;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--coral);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--coral);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--coral);
}

.timeline-content h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 2rem;
    font-weight: 700;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--coral);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--coral);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info > p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.method-icon {
    width: 56px;
    height: 56px;
    background: var(--coral);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-details h3 {
    font-size: 1.125rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.method-details a {
    color: var(--coral);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.method-details a:hover {
    color: var(--navy);
}

.method-details p {
    color: var(--medium-gray);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contact-note {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.contact-note h3 {
    font-size: 1.125rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-note ol {
    padding-left: 1.5rem;
}

.contact-note ol li {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.contact-form h3 {
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 2rem;
    font-weight: 700;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label span {
    color: var(--medium-gray);
    font-size: 0.875rem;
}

.checkbox-label a {
    color: var(--coral);
    text-decoration: underline;
}

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

.map-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.map-section h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-container {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--coral);
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-container p {
    font-size: 1.125rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.legal-page {
    padding: 8rem 0 4rem;
    background: var(--light-gray);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 4rem;
}

.legal-container h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-date {
    color: var(--medium-gray);
    font-size: 0.875rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
}

.legal-section p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: none;
    margin: 1rem 0;
}

.legal-section ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.legal-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: 700;
    font-size: 1.5rem;
}

.legal-section a {
    color: var(--coral);
    text-decoration: underline;
}

.legal-section strong {
    color: var(--navy);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .image-text-grid,
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mega-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mega-menu {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    #mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        gap: 1rem;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .has-mega:hover .mega-menu {
        display: none;
    }

    .mega-menu {
        position: static;
        transform: none;
        display: none;
        box-shadow: none;
        padding: 1rem 0;
        margin-top: 0.5rem;
        min-width: auto;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .process-grid,
    .features-grid,
    .approach-grid,
    .additional-services {
        grid-template-columns: 1fr;
    }

    .principle-item {
        flex-direction: column;
        gap: 1rem;
    }

    .principle-number {
        font-size: 2rem;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline-marker {
        left: -2.5rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .cookie-btn {
        width: 100%;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .legal-container {
        padding: 2rem 1.5rem;
    }

    .service-card-large {
        padding: 2rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .cta-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .overlap-card {
        padding: 1.5rem;
    }

    .process-card,
    .feature-card,
    .approach-card {
        padding: 1.5rem;
    }
}