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

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

html {
    scroll-behavior: smooth;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    color: var(--color-primary-dark);
    font-weight: 600;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

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

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

.logo:hover {
    color: var(--color-primary-dark);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    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-link.active {
    color: var(--color-primary);
}

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

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

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

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

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

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

.btn-secondary:hover {
    background: var(--color-primary-dark);
    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-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background: var(--color-bg-alt);
}

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

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 24px;
    max-width: 500px;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 480px;
}

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

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

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

.section-header {
    margin-bottom: 48px;
}

.section-header h2 {
    margin-bottom: 16px;
}

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

.section-header.centered {
    text-align: center;
}

.section-header.centered p {
    margin: 0 auto;
}

.intro-section {
    padding: 100px 0;
}

.intro-grid {
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1.5;
}

.intro-text h2 {
    margin-bottom: 24px;
}

.intro-text p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

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

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 8px;
}

.services-preview {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.services-grid {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    flex: 1;
    background: var(--color-bg);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.service-price {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent);
}

.services-cta {
    text-align: center;
}

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

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

.split-content h2 {
    margin-bottom: 24px;
}

.split-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.split-content .btn {
    align-self: flex-start;
    margin-top: 16px;
}

.split-content.dark {
    background: var(--color-primary-dark);
    color: white;
}

.split-content.dark h2,
.split-content.dark .section-tag {
    color: white;
}

.split-content.dark .section-tag {
    color: var(--color-accent);
}

.split-content.dark p,
.split-content.dark li span {
    color: rgba(255,255,255,0.8);
}

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

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

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    margin-bottom: 20px;
}

.feature-list li strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.feature-list li span {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.process-section {
    padding: 100px 0;
}

.process-timeline {
    display: flex;
    gap: 32px;
}

.process-step {
    flex: 1;
    position: relative;
    padding-left: 24px;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-border);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 16px;
}

.process-step h3 {
    margin-bottom: 12px;
}

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

.testimonials-section {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.testimonials-grid {
    display: flex;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    background: var(--color-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-content p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: var(--color-primary-dark);
}

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

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

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

.form-section {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-bg);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    margin-bottom: 12px;
}

.form-intro p {
    color: var(--color-text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-bg);
    transition: border-color var(--transition), box-shadow var(--transition);
    font-family: inherit;
}

.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);
}

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

.footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 40px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1.5;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 280px;
}

.footer-links {
    flex: 1;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

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

.footer-contact {
    flex: 1;
}

.footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--color-accent);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    display: none;
}

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

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

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

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    background: var(--color-accent);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
    z-index: 50;
}

.sticky-cta:hover {
    background: var(--color-accent-dark);
    color: white;
    transform: translateY(-4px);
}

.page-hero {
    padding: 100px 0 60px;
    background: var(--color-bg-alt);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.values-section {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.values-grid {
    display: flex;
    gap: 32px;
}

.value-card {
    flex: 1;
    text-align: center;
    padding: 40px 32px;
}

.value-icon {
    width: 72px;
    height: 72px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: var(--color-text-light);
}

.team-section {
    padding: 100px 0;
}

.team-grid {
    display: flex;
    gap: 32px;
}

.team-card {
    flex: 1;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.team-image {
    height: 280px;
    overflow: hidden;
}

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

.team-info {
    padding: 24px;
}

.team-info h3 {
    margin-bottom: 4px;
}

.team-role {
    display: block;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 12px;
}

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

.dark-bg {
    background: var(--color-primary-dark);
}

.location-info {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location strong {
    display: block;
    margin-bottom: 4px;
}

.location span {
    color: rgba(255,255,255,0.7);
}

.milestones-section {
    padding: 100px 0;
}

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

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

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
}

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

.timeline-content {
    flex: 1;
    padding-left: 32px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 50%;
}

.timeline-content h3 {
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--color-text-light);
}

.certifications-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.cert-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.cert-item {
    text-align: center;
}

.cert-item strong {
    display: block;
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.cert-item span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.services-intro {
    padding: 60px 0 0;
}

.intro-box {
    background: var(--color-primary);
    color: white;
    padding: 32px 40px;
    border-radius: var(--radius-lg);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-box p {
    font-size: 1.125rem;
}

.service-detail {
    padding: 80px 0;
}

.service-detail.alt-bg {
    background: var(--color-bg-alt);
}

.service-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-info {
    flex: 1;
}

.service-info .service-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    background: var(--color-accent);
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.service-info h2 {
    margin-bottom: 16px;
}

.service-info > p {
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--color-text);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 2px;
    background: var(--color-accent);
}

.price-box {
    margin-bottom: 24px;
}

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

.price-note {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.service-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-image img {
    width: 100%;
    height: auto;
}

.packages-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.packages-section .section-header h2,
.packages-section .section-header p {
    color: white;
}

.packages-grid {
    display: flex;
    gap: 32px;
    align-items: stretch;
}

.package-card {
    flex: 1;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--color-accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-header h3 {
    margin-bottom: 8px;
}

.package-header p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.package-price {
    margin-bottom: 32px;
}

.package-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.package-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.package-features li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.package-features li:last-child {
    border-bottom: none;
}

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

.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-text);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition);
    flex-shrink: 0;
}

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

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

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

.faq-answer p {
    padding-bottom: 24px;
    color: var(--color-text-light);
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info-panel {
    flex: 1;
}

.contact-block {
    margin-bottom: 32px;
}

.contact-block h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.contact-block address {
    font-style: normal;
    color: var(--color-text-light);
    line-height: 1.8;
}

.contact-block p {
    color: var(--color-text-light);
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

.hours-list li span:first-child {
    color: var(--color-text);
}

.hours-list li span:last-child {
    color: var(--color-text-muted);
}

.contact-map-panel {
    flex: 1.2;
}

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

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px;
}

.map-overlay span {
    color: white;
    font-weight: 500;
}

.directions-info {
    margin-top: 24px;
}

.directions-info h4 {
    margin-bottom: 8px;
}

.directions-info p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.departments-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.departments-grid {
    display: flex;
    gap: 24px;
}

.department-card {
    flex: 1;
    background: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.dept-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.dept-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.department-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

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

.department-card a {
    font-size: 0.95rem;
    color: var(--color-accent);
    font-weight: 500;
}

.response-section {
    padding: 80px 0;
}

.response-grid {
    display: flex;
    gap: 48px;
}

.response-item {
    flex: 1;
    text-align: center;
}

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

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

.response-item h3 {
    margin-bottom: 12px;
}

.response-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.thanks-section {
    padding: 120px 0 80px;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #48bb78;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.thanks-content h1 {
    margin-bottom: 16px;
}

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

.thanks-content > p {
    color: var(--color-text-light);
    margin-bottom: 48px;
}

.thanks-next {
    background: var(--color-bg-alt);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next h3 {
    margin-bottom: 24px;
}

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

.next-steps li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

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

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.quick-info {
    padding: 60px 0;
    background: var(--color-bg-alt);
}

.quick-grid {
    display: flex;
    gap: 48px;
    justify-content: center;
}

.quick-item {
    text-align: center;
}

.quick-item h4 {
    margin-bottom: 8px;
}

.quick-item p {
    color: var(--color-text-light);
}

.legal-hero {
    padding: 80px 0 40px;
    background: var(--color-bg-alt);
}

.legal-hero h1 {
    margin-bottom: 8px;
}

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

.legal-content {
    padding: 60px 0 100px;
}

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

.legal-text h2 {
    font-size: 1.5rem;
    margin: 48px 0 16px;
}

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

.legal-text h3 {
    font-size: 1.125rem;
    margin: 32px 0 12px;
}

.legal-text p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.legal-text ul {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--color-text-light);
}

.legal-text li {
    margin-bottom: 8px;
}

.legal-text a {
    color: var(--color-accent);
}

.legal-date {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

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

.cookie-table td {
    color: var(--color-text-light);
}

@media (max-width: 1024px) {
    .split-hero {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 60px 40px;
    }

    .hero-image {
        height: 400px;
    }

    .intro-grid {
        flex-direction: column;
        gap: 48px;
    }

    .intro-stats {
        flex-direction: row;
    }

    .services-grid {
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 16px);
    }

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

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

    .split-content {
        padding: 60px 40px;
    }

    .split-image {
        height: 400px;
    }

    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }

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

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 1 1 100%;
        margin-bottom: 24px;
    }

    .values-grid,
    .team-grid {
        flex-wrap: wrap;
    }

    .value-card,
    .team-card {
        flex: 1 1 calc(50% - 16px);
    }

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

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

    .packages-grid {
        flex-direction: column;
        gap: 24px;
    }

    .package-card.featured {
        transform: none;
    }

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

    .departments-grid {
        flex-wrap: wrap;
    }

    .department-card {
        flex: 1 1 calc(50% - 12px);
    }

    .response-grid {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
    }

    .nav-list.show {
        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: 16px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 40px 24px;
    }

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

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

    .service-card {
        flex: 1 1 100%;
    }

    .split-content {
        padding: 40px 24px;
    }

    .form-wrapper {
        padding: 40px 24px;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .footer-links,
    .footer-contact {
        flex: 1 1 auto;
    }

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

    .sticky-cta {
        bottom: 80px;
        right: 16px;
        padding: 12px 20px;
        font-size: 0.875rem;
    }

    .value-card,
    .team-card,
    .department-card {
        flex: 1 1 100%;
    }

    .cert-grid {
        flex-wrap: wrap;
        gap: 24px;
    }

    .cert-item {
        flex: 1 1 calc(50% - 12px);
    }

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

    .quick-grid {
        flex-direction: column;
        gap: 32px;
    }
}
