/* Mellouk Beauty Landing Page */
:root {
    --primary: #d4a373;
    --primary-dark: #bc8c5e;
    --primary-light: #e9d5c3;
    --secondary: #588157;
    --accent: #bc6c25;
    --background: #faf8f5;
    --surface: #ffffff;
    --surface-hover: #fdfcfa;
    --text-primary: #2d2a26;
    --text-secondary: #6b6560;
    --text-muted: #9a948d;
    --border: #e8e4df;
    --success: #588157;
    --warning: #dda15e;
    --error: #bc4749;
    --info: #5e7c8b;
    
    --shadow-sm: 0 1px 3px rgba(45, 42, 38, 0.06);
    --shadow-md: 0 4px 12px rgba(45, 42, 38, 0.08);
    --shadow-lg: 0 8px 24px rgba(45, 42, 38, 0.12);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 10000;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0.75rem 1rem;
    clip: auto;
    overflow: visible;
    white-space: normal;
    background: var(--surface);
    color: var(--text-primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--surface);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 12px;
    column-gap: 1.5rem;
    padding: 20px 0;
}

@media (min-width: 769px) {
    .navbar {
        justify-content: flex-start;
        column-gap: 1.75rem;
    }
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-right: 2rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.logo .logo-text {
    font-size: 1.125rem;
    text-align: center;
    line-height: 1.15;
}

.logo-icon {
    font-size: 2rem;
}

.header .logo > img.logo-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 4px;
    display: block;
}

.logo-icon img {
    width: 2rem;
    height: 2rem;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

@media (min-width: 769px) {
    .nav-links {
        flex: 1 1 auto;
        justify-content: flex-end;
        flex-wrap: wrap;
        min-width: 0;
        row-gap: 10px;
        column-gap: 1.5rem;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-ai-receptionist {
    background: linear-gradient(135deg, #e11d48, #9333ea);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    animation: aiPulse 2.5s ease-in-out infinite;
    box-shadow: 0 2px 10px rgba(225, 29, 72, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-ai-receptionist:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.4);
}

@keyframes aiPulse {
    0%, 100% { box-shadow: 0 2px 10px rgba(225, 29, 72, 0.3); }
    50% { box-shadow: 0 4px 20px rgba(147, 51, 234, 0.5); }
}

.btn-whatsapp {
    background-color: var(--success);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #4a6c4a;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* Hero */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--surface) 0%, var(--background) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-title-primary {
    display: block;
}

.hero-title-location {
    display: block;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--text-secondary);
    margin-top: 14px;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    padding: 14px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid transparent;
}

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

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

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

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

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

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

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
}

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

.service-list-api li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.service-line-name {
    flex: 1;
    min-width: 120px;
}

.service-line-meta {
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

.services-catalog-status {
    text-align: center;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.services-catalog-status--error {
    color: var(--error);
}

.services-catalog-status--warning {
    color: var(--warning);
}

.services-catalog-status-card {
    grid-column: 1 / -1;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--surface);
    box-shadow: var(--shadow-md);
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.team-social a {
    display: inline-block;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin: 0 10px;
    transition: color 0.3s;
}

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

/* Gallery */
.gallery {
    background-color: var(--surface);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item-wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item-wide {
        grid-column: span 1;
    }
}

/* About */
.about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

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

.feature {
    text-align: center;
    padding: 30px;
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature p {
    color: var(--text-secondary);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
}

.whatsapp-link {
    display: inline-block;
    margin-top: 5px;
    color: var(--success);
    text-decoration: none;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--surface);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary);
    color: white;
}

.contact-form {
    background-color: var(--surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-copyright {
    margin-bottom: 20px;
    opacity: 0.7;
}

.footer-notes a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
    margin: 0 10px;
}

.footer-notes a:hover {
    opacity: 1;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background-color: var(--surface);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    padding: 24px 28px;
    background-color: var(--background);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.35;
}

.faq-answer p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.65;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--success);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background-color: #4a6c4a;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-title-location {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        margin-left: auto;
    }
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex: none;
        justify-content: flex-start;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        background-color: var(--surface);
        padding: 30px;
        transition: left 0.3s;
        box-shadow: var(--shadow-md);
    }
    .nav-links.active {
        left: 0;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-title-location {
        font-size: 0.95rem;
    }
}

/* ───────────────── Install App Button + Modal (PWA) ──────────────── */
.btn-install-app {
    background: linear-gradient(135deg, #e11d48, #f59e0b);
    color: #fff !important;
    padding: 10px 18px;
    border: 0;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(225, 29, 72, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: installPulse 2.5s ease-in-out infinite;
}
.btn-install-app:hover {
    transform: scale(1.06);
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.45);
}
@keyframes installPulse {
    0%, 100% { box-shadow: 0 2px 12px rgba(225, 29, 72, 0.3); }
    50%      { box-shadow: 0 4px 18px rgba(245, 158, 11, 0.4); }
}

.btn-consultora-app {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: #fff !important;
    padding: 10px 18px;
    border: 0;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(147, 51, 234, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: consultoraPulse 2.5s ease-in-out infinite;
}
.btn-consultora-app:hover {
    transform: scale(1.06);
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.5);
    color: #fff !important;
}
@keyframes consultoraPulse {
    0%, 100% { box-shadow: 0 2px 12px rgba(147, 51, 234, 0.3); }
    50%      { box-shadow: 0 4px 18px rgba(124, 58, 237, 0.5); }
}

.install-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.install-modal.is-open {
    display: flex;
}
.install-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 30, 0.6);
    backdrop-filter: blur(4px);
}
.install-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    animation: install-modal-in 0.22s ease-out;
}
@keyframes install-modal-in {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.install-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 0;
    font-size: 24px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    border-radius: 50%;
}
.install-modal__close:hover { background: #fff0f3; color: #e11d48; }
.install-modal__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e11d48, #f59e0b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
}
.install-modal__title {
    margin: 0 0 4px;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #1a1a2e;
}
.install-modal__subtitle {
    margin: 0 0 14px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.45;
}
.install-modal__steps {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    display: grid;
    gap: 10px;
}
.install-modal__steps li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff7f9;
    border: 1px solid #fde4ec;
    border-radius: 14px;
    padding: 10px 12px;
    font-size: 0.88rem;
    color: #1a1a2e;
}
.install-modal__num {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #fff;
    color: #e11d48;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 1px 4px rgba(225, 29, 72, 0.15);
}
.install-modal__steps small {
    color: #555;
    line-height: 1.4;
}
.install-modal__hint {
    margin: 10px 0 14px;
    padding: 10px 12px;
    background: #fff7f9;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #9b1c3b;
    line-height: 1.45;
}
.install-modal__ok {
    width: 100%;
    padding: 12px 16px;
    background: #1a1a2e;
    color: #fff;
    border: 0;
    border-radius: 12px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}
.install-modal__ok:hover { background: #262645; }
.install-modal__icon--purple { background: linear-gradient(135deg, #9333ea, #7c3aed); }
.install-modal__dialog--purple .install-modal__close:hover { background: #f3e8ff; color: #9333ea; }
.install-modal__steps--purple li { background: #f5f0ff; border-color: #e9d5ff; }
.install-modal__steps--purple .install-modal__num { color: #9333ea; box-shadow: 0 1px 4px rgba(147,51,234,0.15); }
.install-modal__ok--purple { display: block; text-align: center; text-decoration: none; background: #7c3aed; color: #fff; }
.install-modal__ok--purple:hover { background: #6d28d9; color: #fff; }
.install-modal__cancel { width: 100%; margin-top: 8px; padding: 10px; background: transparent; border: 1px solid #e5e7eb; border-radius: 12px; font: inherit; color: #666; cursor: pointer; }
.install-modal__cancel:hover { background: #f9fafb; }
body.install-modal-open { overflow: hidden; }

/* Language switch */
.nav-language {
    margin-left: 0.25rem;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.language-switch__label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-left: 0.35rem;
}

.language-switch__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

.language-switch__link:hover,
.language-switch__link:focus-visible {
    background: var(--primary-light);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.language-switch__link.is-active {
    background: var(--text-primary);
    color: #fff;
}

/* Utility and legal pages */
.utility-page,
.legal-page {
    min-height: 100vh;
    padding: 7rem 0 4rem;
}

.utility-page .container,
.legal-page .container {
    max-width: 920px;
}

.utility-page__card,
.legal-page__card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
}

.utility-page__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.utility-page__title,
.legal-page__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.utility-page__body,
.legal-page__intro,
.legal-page__section p,
.legal-page__section li {
    color: var(--text-secondary);
    line-height: 1.75;
}

.utility-page__actions,
.legal-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.legal-page__header {
    margin-bottom: 2rem;
}

.legal-page__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
    margin-top: 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.legal-page__section + .legal-page__section {
    margin-top: 2rem;
}

.legal-page__section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 0.9rem;
}

.legal-page__section ul {
    margin: 0.75rem 0 0 1.2rem;
}

.legal-page__section li + li {
    margin-top: 0.5rem;
}

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

@media (max-width: 768px) {
    .nav-language {
        width: 100%;
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .language-switch {
        width: 100%;
        justify-content: center;
    }

    .utility-page,
    .legal-page {
        padding-top: 6rem;
    }

    .utility-page__card,
    .legal-page__card {
        padding: 1.5rem;
    }

    .utility-page__actions,
    .legal-page__actions {
        flex-direction: column;
    }
}