:root {
    --color-primary: #1a365d;
    --color-primary-light: #2c5282;
    --color-primary-dark: #0f2442;
    --color-accent: #e67e22;
    --color-accent-light: #f39c12;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-bg-dark: #1a202c;
    --color-border: #e2e8f0;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-accent);
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-bg);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

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

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

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

main {
    padding-top: 72px;
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}

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

.btn-primary:hover {
    background: var(--color-accent-light);
    color: white;
    transform: translateY(-2px);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

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

.btn-light:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    background: rgba(230, 126, 34, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.split-section {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 4rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

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

.split-content {
    flex: 1;
    max-width: 540px;
}

.split-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.split-content h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.split-content p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.split-image {
    flex: 1;
    max-width: 600px;
}

.split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero .split-image img {
    height: 600px;
}

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

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

.stats-bar {
    background: var(--color-primary);
    padding: 3rem 1.5rem;
}

.stats-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

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

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

.section-header h2 {
    font-size: 2.25rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.services-preview {
    padding: 6rem 1.5rem;
    background: var(--color-bg-alt);
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

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

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--color-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--color-primary);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.card-link {
    font-weight: 600;
    color: var(--color-primary);
}

.card-link:hover {
    color: var(--color-accent);
}

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

.testimonial-split .split-content {
    background: var(--color-bg-alt);
    padding: 3rem;
    border-radius: var(--radius-lg);
}

.testimonial {
    margin: 0;
}

.testimonial p {
    font-size: 1.375rem;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial cite {
    display: block;
    font-style: normal;
}

.testimonial cite strong {
    display: block;
    font-size: 1rem;
    color: var(--color-primary-dark);
}

.testimonial cite span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.process-section {
    padding: 6rem 1.5rem;
    background: white;
}

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

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

.step-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

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

.form-section {
    padding: 6rem 1.5rem;
    background: var(--color-bg-alt);
}

.form-container {
    display: flex;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
}

.form-info {
    flex: 1;
    max-width: 400px;
}

.form-info h2 {
    font-size: 2rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

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

.form-benefits {
    list-style: none;
}

.form-benefits li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.contact-form {
    flex: 1;
    max-width: 500px;
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.partners-section {
    padding: 4rem 1.5rem;
    background: white;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-light);
    opacity: 0.6;
}

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

.footer-main {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.footer-brand .logo {
    font-size: 1.5rem;
    color: white;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
}

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

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

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}

.footer-col a:hover {
    color: white;
}

.footer-col address {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta .btn {
    box-shadow: var(--shadow-lg);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    padding: 1.5rem;
    z-index: 1100;
    transform: translateY(100%);
    transition: transform var(--transition);
}

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

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

.cookie-content p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9375rem;
    flex: 1;
}

.cookie-content a {
    color: var(--color-accent);
}

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

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

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 2.75rem;
    color: white;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
}

.values-section {
    padding: 6rem 1.5rem;
    background: var(--color-bg-alt);
}

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

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

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-accent);
}

.value-card h3 {
    font-size: 1.125rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

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

.timeline-section {
    padding: 6rem 1.5rem;
    background: white;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    width: 80px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent);
    text-align: right;
}

.timeline-content {
    flex: 1;
    padding-left: 2rem;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--color-accent);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
    font-size: 1.125rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.25rem;
}

.timeline-content p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.team-section {
    padding: 6rem 1.5rem;
    background: var(--color-bg-alt);
}

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

.team-member {
    text-align: center;
    flex: 1;
    min-width: 240px;
    max-width: 300px;
}

.member-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

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

.team-member h3 {
    font-size: 1.125rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.25rem;
}

.member-role {
    display: block;
    font-size: 0.875rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-member p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

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

.services-intro {
    padding: 4rem 1.5rem;
    text-align: center;
}

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

.intro-content h2 {
    font-size: 2rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

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

.services-full {
    padding: 4rem 1.5rem;
}

.services-full.alt-bg {
    background: var(--color-bg-alt);
}

.service-detail .split-content {
    max-width: 500px;
}

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

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    color: var(--color-text);
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.service-pricing {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
}

.price-note {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.pricing-comparison {
    padding: 6rem 1.5rem;
    background: white;
}

.pricing-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.pricing-table th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    background: var(--color-bg-alt);
}

.pricing-table tr.highlight {
    background: rgba(230, 126, 34, 0.05);
}

.pricing-table td:last-child {
    color: var(--color-accent);
}

.pricing-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.faq-section {
    padding: 6rem 1.5rem;
    background: var(--color-bg-alt);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 3rem;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-accent);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.contact-section {
    padding: 6rem 1.5rem;
}

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

.contact-info-cards {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-accent);
}

.info-card h3 {
    font-size: 1.125rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.75rem;
}

.info-card address,
.info-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9375rem;
    color: var(--color-text);
}

.hours-list li:last-child {
    border-bottom: none;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.map-overlay p {
    font-weight: 600;
    color: var(--color-primary-dark);
    margin: 0;
}

.departments-section {
    padding: 6rem 1.5rem;
    background: var(--color-bg-alt);
}

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

.department-card {
    flex: 1;
    min-width: 220px;
    max-width: 240px;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.department-card h3 {
    font-size: 1rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.department-card p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.dept-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
}

.thanks-section {
    padding: 8rem 1.5rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    stroke: #2ecc71;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.thanks-name {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.thanks-content > p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-details h2 {
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.next-steps {
    list-style: none;
}

.next-steps li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-num {
    width: 36px;
    height: 36px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    color: var(--color-text);
}

.thanks-contact {
    margin-bottom: 2rem;
}

.thanks-contact p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.contact-link {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
}

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

.related-info {
    padding: 4rem 1.5rem;
    background: var(--color-bg-alt);
}

.info-cards-row {
    display: flex;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.mini-card {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.mini-card h3 {
    font-size: 1rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.mini-card p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.legal-hero {
    background: var(--color-bg-alt);
    padding: 8rem 1.5rem 4rem;
}

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

.legal-hero h1 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.legal-hero p {
    color: var(--color-text-light);
}

.legal-content {
    padding: 4rem 1.5rem;
}

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

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

.legal-article h2:first-child {
    margin-top: 0;
}

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

.legal-article p {
    color: var(--color-text);
    margin-bottom: 1rem;
}

.legal-article ul,
.legal-article ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-article li {
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.legal-article ul {
    list-style: disc;
}

.legal-article ol {
    list-style: decimal;
}

.legal-article address {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
}

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

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

.cookie-table th {
    background: var(--color-bg-alt);
    font-size: 0.875rem;
    font-weight: 600;
}

.cookie-table td {
    font-size: 0.9375rem;
}

@media (max-width: 992px) {
    .split-section {
        flex-direction: column;
        min-height: auto;
        padding: 4rem 1.5rem;
    }

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

    .split-content {
        max-width: 100%;
    }

    .split-content h1 {
        font-size: 2.25rem;
    }

    .split-content h2 {
        font-size: 1.75rem;
    }

    .split-image {
        max-width: 100%;
    }

    .split-image img {
        height: 350px;
    }

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

    .form-info,
    .contact-form {
        max-width: 100%;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-year {
        width: 40px;
        font-size: 1rem;
    }

    .timeline-content::before {
        left: -28px;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        gap: 0;
    }

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

    .nav-list li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .stats-inner {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

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

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .contact-grid {
        flex-direction: column;
    }

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

    .sticky-cta .btn {
        width: 100%;
    }

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