:root {
    --color-primary: #1a365d;
    --color-primary-light: #2c5282;
    --color-primary-dark: #0f2744;
    --color-accent: #3182ce;
    --color-accent-light: #4299e1;
    --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;
    --color-success: #38a169;
    --font-primary: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: 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-accent);
    text-decoration: none;
    transition: color var(--transition);
}

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

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

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

@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.75rem; }
}

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

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

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

.nav-toggle {
    display: flex;
    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-primary);
    transition: var(--transition);
}

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

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

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-accent);
}

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

    .nav-links {
        display: flex;
    }
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    gap: 16px;
}

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

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

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

.btn-secondary {
    background: var(--color-bg-alt);
    color: var(--color-primary);
    border: 1px solid var(--color-border);
}

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

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

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

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

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

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

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.hero {
    padding-top: 100px;
}

.split-hero {
    display: flex;
    flex-direction: column;
    min-height: 90vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 24px;
    order: 2;
}

.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 {
    margin-bottom: 24px;
}

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

.hero-image {
    flex: 1;
    order: 1;
    min-height: 300px;
}

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

@media (min-width: 992px) {
    .split-hero {
        flex-direction: row;
    }

    .hero-content {
        flex: 1;
        padding: 80px 60px;
        order: 1;
    }

    .hero-image {
        flex: 1;
        order: 2;
        min-height: auto;
    }
}

.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-tag.light {
    color: var(--color-accent-light);
}

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

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

.section-header h2 {
    margin-top: 8px;
}

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

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

.intro-stat {
    text-align: center;
    padding: 24px;
}

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

.stat-label {
    font-size: 1rem;
    color: var(--color-text-light);
}

@media (min-width: 768px) {
    .intro-grid {
        flex-direction: row;
        justify-content: space-around;
    }

    .intro-stat {
        flex: 1;
    }
}

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

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

.split-section.dark {
    background: var(--color-bg-dark);
    color: white;
}

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

.split-section.dark p {
    color: rgba(255, 255, 255, 0.85);
}

.split-content {
    flex: 1;
    padding: 60px 24px;
}

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

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

.split-content .btn {
    margin-top: 16px;
}

.split-image {
    flex: 1;
    min-height: 300px;
}

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

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

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

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

.split-section.dark .feature-list li::before {
    color: var(--color-accent-light);
}

@media (min-width: 992px) {
    .split-section {
        flex-direction: row;
    }

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

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

    .split-image {
        min-height: auto;
    }
}

.services-preview {
    padding: 80px 0;
}

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

.service-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

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

.service-card.featured {
    border-color: var(--color-accent);
    background: linear-gradient(to bottom, rgba(49, 130, 206, 0.05), transparent);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

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

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

.service-price {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.card-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link::after {
    content: '→';
    transition: transform var(--transition);
}

.card-link:hover::after {
    transform: translateX(4px);
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 280px;
    }
}

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

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

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 24px;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

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

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

@media (min-width: 768px) {
    .testimonials-grid {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step {
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-bg-alt);
    -webkit-text-stroke: 2px var(--color-accent);
    line-height: 1;
}

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

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

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1;
        min-width: 220px;
        padding-left: 0;
        padding-top: 60px;
        text-align: center;
    }

    .step-number {
        position: relative;
        display: block;
        margin-bottom: 16px;
    }
}

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

.cta-section.alt {
    background: var(--color-bg-alt);
}

.cta-section.alt h2 {
    color: var(--color-primary-dark);
}

.cta-section.alt p {
    color: var(--color-text-light);
}

.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;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.trust-content {
    text-align: center;
}

.trust-content h3 {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.trust-badge {
    background: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
}

.main-footer {
    background: var(--color-bg-dark);
    color: white;
    padding-top: 60px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 16px;
}

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

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

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

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

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

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

@media (min-width: 768px) {
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-brand {
        flex: 2;
    }

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

.page-header {
    padding: 140px 0 60px;
    background: var(--color-bg-alt);
}

.page-header.legal {
    padding-bottom: 40px;
}

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

.page-header h1 {
    margin-bottom: 20px;
}

.page-intro {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 700px;
}

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

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

.value-card {
    padding: 32px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

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

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

@media (min-width: 768px) {
    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1;
        min-width: 250px;
    }
}

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

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

.team-member {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.member-image {
    height: 250px;
}

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

.member-info {
    padding: 24px;
}

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

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

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

@media (min-width: 768px) {
    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1;
        min-width: 280px;
    }
}

.numbers-section {
    padding: 60px 0;
}

.numbers-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.number-item .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.number-item .number-label {
    font-size: 1rem;
    color: var(--color-text-light);
}

@media (min-width: 768px) {
    .numbers-grid {
        flex-direction: row;
        justify-content: space-around;
    }

    .number-item {
        flex: 1;
    }
}

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

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

.service-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

.service-detail-content h2 {
    margin-bottom: 20px;
}

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

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

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

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

.service-pricing {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    display: inline-block;
}

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

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

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

.price-note {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.service-detail-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 300px;
}

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

@media (min-width: 992px) {
    .service-detail-grid {
        flex-direction: row;
        align-items: center;
    }

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

    .service-detail-content,
    .service-detail-image {
        flex: 1;
    }
}

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

.pricing-table {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}

.pricing-row {
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row.header {
    background: var(--color-primary);
    color: white;
    font-weight: 600;
}

.pricing-service {
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-row.header .pricing-service {
    margin-bottom: 0;
}

.pricing-price {
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-row.header .pricing-price {
    color: white;
}

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

.pricing-row.header .pricing-note {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .pricing-row {
        flex-direction: row;
        align-items: center;
    }

    .pricing-service {
        flex: 2;
        margin-bottom: 0;
    }

    .pricing-price {
        flex: 1;
        text-align: center;
        margin-bottom: 0;
    }

    .pricing-note {
        flex: 1;
        text-align: right;
    }
}

.consultation-form-section {
    padding: 80px 0;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-bg-alt);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

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

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

.consultation-form .form-group {
    margin-bottom: 20px;
}

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

.consultation-form input[type="text"],
.consultation-form input[type="email"],
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color var(--transition);
}

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

.consultation-form .checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.consultation-form .checkbox input {
    width: auto;
    margin-top: 4px;
}

.consultation-form .checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

.consultation-form button[type="submit"] {
    width: 100%;
    margin-top: 16px;
}

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

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

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

.contact-card {
    background: var(--color-bg-alt);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.contact-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

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

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

.contact-note {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 8px;
}

.contact-map {
    flex: 1;
}

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

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

@media (min-width: 992px) {
    .contact-grid {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
    }

    .contact-map {
        flex: 1;
    }
}

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

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

.direction-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
}

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

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

@media (min-width: 768px) {
    .directions-grid {
        flex-direction: row;
    }

    .direction-card {
        flex: 1;
    }
}

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

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

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--color-primary-dark);
}

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    color: var(--color-success);
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

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

.thanks-message {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 40px;
}

.submission-summary {
    background: var(--color-bg-alt);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: left;
}

.submission-summary h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--color-primary-dark);
}

.submission-summary p {
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.thanks-next {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next h2 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

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

.next-steps li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.next-steps .step-number {
    width: 32px;
    height: 32px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.next-steps .step-text {
    color: var(--color-text-light);
    padding-top: 4px;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 480px) {
    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

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

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

.legal-text section {
    margin-bottom: 40px;
}

.legal-text h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.legal-text section:first-child h2 {
    border-top: none;
    padding-top: 0;
}

.legal-text h3 {
    font-size: 1.125rem;
    margin: 24px 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-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9375rem;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    padding: 20px 24px;
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

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

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-content p {
        flex: 1;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .hero-content {
        padding: 32px 16px;
    }

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

    .services-preview,
    .testimonials-section,
    .process-section,
    .cta-section,
    .values-section,
    .team-section,
    .service-detail,
    .pricing-overview,
    .consultation-form-section,
    .contact-section,
    .faq-section {
        padding: 60px 0;
    }

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