
:root {
    --primary-color: #007AFF;
    --text-color: #1d1d1f;
    --text-light: #86868b;
    --bg-color: #ffffff;
    --bg-secondary: #f5f5f7;
    --dark-bg: #0B1221;
    --dark-text: #ffffff;
    --border-radius: 12px;
    --container-width: 1200px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.25s ease;
    will-change: transform;
}
.site-header.is-hidden {
    transform: translateY(-110%);
}

.navbar .container { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.2rem; color: var(--text-color); }
.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--dark-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.logo-icon-img { height: 24px; width: 24px; }
.logo-text { font-weight: 800; letter-spacing: -0.02em; }

.nav-right { display: flex; align-items: center; gap: 30px; }
.nav-menu { display: flex; gap: 24px; }
.nav-menu a { font-weight: 500; font-size: 0.95rem; color: var(--text-color); }
.nav-menu a:hover { color: var(--primary-color); }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.95);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.nav-toggle:hover { background: rgba(255,255,255,1); }
.nav-toggle-bars {
    position: relative;
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: transform 0.2s, background 0.2s;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: transform 0.2s, top 0.2s, opacity 0.2s;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.nav-panel { display: flex; align-items: center; gap: 30px; }

.site-header.is-menu-open .nav-toggle-bars { background: transparent; }
.site-header.is-menu-open .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.site-header.is-menu-open .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

.btn { display: inline-block; padding: 10px 20px; border-radius: 8px; font-weight: 600; transition: all 0.2s; cursor: pointer; border: none; }
.btn-primary { background-color: var(--primary-color); color: white; }
.btn-primary:hover { background-color: #0062cc; }

/* Hero */
.hero { padding: 80px 0; overflow: hidden; background: radial-gradient(circle at 50% 0%, #eff6ff 0%, #ffffff 70%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-title { font-size: 3.5rem; line-height: 1.1; font-weight: 800; margin-bottom: 20px; color: var(--text-color); }
.hero-subtitle { font-size: 1.25rem; color: var(--text-light); margin-bottom: 40px; max-width: 500px; }
.hero-buttons { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.btn-store { padding: 0; background: transparent; border: none; display: flex; align-items: center; height: 48px; }
.btn-store:hover { background: transparent; opacity: 0.8; transform: scale(1.02); }
.btn-store img { height: 48px; width: auto; display: block; }
.store-badge { height: 48px; width: auto; display: block; }
.hero-image { position: relative; display: flex; justify-content: center; }
.hero-screenshot-wrapper {
    max-width: 320px; /* Reduced width for better proportion */
    width: 100%;
}
.hero-screenshot-placeholder {
    width: 100%;
    aspect-ratio: 9/19.5;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
    font-size: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
}
.hero-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 40px;
}

/* Device frame (used for hero + steps screenshots) */
.device-frame {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 14px;
    border-radius: 52px;
    background: #0B0F1A;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow:
      0 18px 40px rgba(0,0,0,0.22),
      inset 0 0 0 1px rgba(255,255,255,0.06);
}
.device-frame::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 30px;
    border-radius: 0 0 18px 18px;
    background: #0B0F1A;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0.06);
    pointer-events: none;
}
.device-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Features */
.features-section { padding: 80px 0; background-color: var(--bg-secondary); }
.features-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.section-heading { font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; }
.section-description { font-size: 1.1rem; color: var(--text-light); }
.features-grid-new { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-box { background: white; padding: 30px; border-radius: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); transition: transform 0.2s; }
.feature-box:hover { transform: translateY(-5px); }
.feature-icon-new { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.icon-green { background-color: #e6f7e6; color: #28a745; }
.icon-blue { background-color: #e6f2ff; color: #007bff; }
.icon-purple { background-color: #f2e6ff; color: #6f42c1; }
.icon-red { background-color: #ffe6e6; color: #dc3545; }
.icon-yellow { background-color: #fff9e6; color: #ffc107; }
.icon-green-light { background-color: #e6fffa; color: #20c997; }
.feature-title { font-size: 1.25rem; margin-bottom: 10px; font-weight: 600; }
.feature-description { color: var(--text-light); font-size: 0.95rem; }

/* Steps */
.steps-section { padding: 80px 0; background-color: var(--bg-color); }
.section-heading-center { text-align: center; font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; }
.section-subheading-center { text-align: center; font-size: 1.1rem; color: var(--text-light); max-width: 760px; margin: 0 auto 60px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; align-items: start; }
.step-item { text-align: center; }
.step-phone { max-width: 320px; margin: 0 auto 18px; }
.step-screenshot { width: 100%; height: auto; display: block; }
.step-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0,122,255,0.10);
    color: var(--primary-color);
    margin-bottom: 10px;
}
.step-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.step-description { color: var(--text-light); font-size: 0.95rem; max-width: 360px; margin: 0 auto; }

/* Blog */
.blog-page { padding: 80px 0 120px; background-color: var(--bg-color); }
.blog-page-list { padding: 0 0 120px; background: var(--bg-color); }
.blog-hero {
    padding: 80px 0 56px;
    background: radial-gradient(circle at 50% 0%, #eff6ff 0%, #ffffff 70%);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.blog-content { padding: 40px 0 0; }
.blog-header { max-width: 980px; margin: 0 auto; }
.blog-header-top { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; }
.blog-header-meta {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(0,0,0,0.04);
    padding: 8px 12px;
    border-radius: 999px;
    white-space: nowrap;
}
.blog-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 12px; color: var(--text-color); line-height: 1.15; }
.blog-intro { color: #444; font-size: 1.05rem; line-height: 1.75; }
.blog-intro p { margin-bottom: 0.9em; }

.blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,122,255,0.10);
    color: var(--primary-color);
}

.blog-featured {
    max-width: 980px;
    margin: 0 auto 26px;
    background: #ffffff;
    border-radius: 18px;
    padding: 26px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.blog-featured:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,0.10); }
.blog-featured .blog-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.blog-featured-title { font-size: 1.65rem; font-weight: 900; margin-bottom: 10px; line-height: 1.2; }
.blog-featured-title a { color: var(--text-color); }
.blog-featured-title a:hover { color: var(--primary-color); }
.blog-featured-summary { color: #444; font-size: 1.02rem; line-height: 1.7; margin-bottom: 14px; max-width: 78ch; }
.blog-featured-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--primary-color);
}

.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 22px; }

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(0,0,0,0.10); }
.blog-card-meta { color: var(--text-light); font-size: 0.9rem; margin-bottom: 10px; }
.blog-card-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; line-height: 1.25; }
.blog-card-title a { color: var(--text-color); }
.blog-card-title a:hover { color: var(--primary-color); }
.blog-card-summary { color: #444; font-size: 0.98rem; line-height: 1.6; margin-bottom: 14px; }
.blog-card-link { color: var(--primary-color); font-weight: 800; margin-top: auto; }
.blog-article { max-width: 900px; margin: 0 auto; }
.blog-article-header { margin-bottom: 22px; }
.blog-article-title { font-size: 2.6rem; font-weight: 900; line-height: 1.15; color: var(--text-color); margin-bottom: 10px; }
.blog-article-meta { color: var(--text-light); font-size: 0.95rem; }
.blog-article-content { font-size: 1.08rem; line-height: 1.8; color: #444; }
.blog-article-content h2 { font-size: 1.6rem; font-weight: 800; margin: 42px 0 14px; color: var(--text-color); }
.blog-article-content h3 { font-size: 1.25rem; font-weight: 750; margin: 30px 0 10px; color: var(--text-color); }
.blog-article-content p { margin-bottom: 1.1em; }
.blog-article-content ul { list-style: disc; padding-left: 1.3em; margin: 0 0 1.1em; }
.blog-article-content li { margin-bottom: 0.45em; }
.blog-article-footer { margin-top: 34px; }
.blog-article-footer a { color: var(--primary-color); font-weight: 700; }

/* Blog CTA */
.blog-cta {
    margin: 34px 0;
    border-radius: 18px;
    padding: 22px;
    background: linear-gradient(135deg, rgba(0,122,255,0.10), rgba(32,201,151,0.08));
    border: 1px solid rgba(0,0,0,0.06);
}
.blog-cta-inner { max-width: 820px; margin: 0 auto; }
.blog-cta-title { font-size: 1.25rem; font-weight: 900; margin-bottom: 8px; color: var(--text-color); }
.blog-cta-text { color: #444; margin-bottom: 14px; }
.blog-cta-buttons { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* Privacy Section */
.privacy-section { padding: 100px 0; text-align: center; }
.privacy-shield-icon { font-size: 3rem; margin-bottom: 20px; display: block; color: #00C7BE; }
.privacy-heading { font-size: 2.5rem; margin-bottom: 20px; font-weight: 700; }
.privacy-subheading { color: var(--text-light); max-width: 700px; margin: 0 auto 60px; font-size: 1.1rem; }
.privacy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
.privacy-card {
    text-align: center;
    padding: 30px 20px;
    background: #f9f9fb;
    border-radius: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.privacy-card:hover { transform: translateY(-5px); box-shadow: 0 12px 28px rgba(0,0,0,0.10); }
.privacy-card-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; }
.icon-cyan { background: #e0f7fa; color: #00acc1; }
.privacy-card-title { font-size: 1.2rem; margin-bottom: 10px; font-weight: 600; }
.privacy-card-text { color: var(--text-light); font-size: 0.95rem; }
.privacy-footer-text { max-width: 700px; margin: 0 auto; font-size: 1.1rem; color: var(--text-color); font-weight: 500; }

/* Sleep Tracking (replaces former privacy section on home) */
.track-section { padding: 100px 0; }
.track-header { text-align: center; margin-bottom: 60px; }
.track-rows { display: flex; flex-direction: column; gap: 56px; }
.track-row { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.track-row.reverse .track-media { order: 2; }
.track-row.reverse .track-copy { order: 1; }
.track-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.16);
    border: 1px solid rgba(0,0,0,0.06);
}
.track-copy h3 { font-size: 1.6rem; margin-bottom: 12px; font-weight: 800; letter-spacing: -0.02em; }
.track-copy p { font-size: 1.05rem; color: var(--text-light); line-height: 1.75; }

.track-chart-card {
    margin-top: 70px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 16px 50px rgba(15, 23, 42, 0.10);
    padding: 28px;
}
.track-chart-top { display: flex; gap: 20px; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; margin-bottom: 18px; }
.track-chart-title { font-size: 1.35rem; font-weight: 900; margin-bottom: 6px; letter-spacing: -0.02em; }
.track-chart-note { color: var(--text-light); font-size: 0.95rem; }
.track-stats { display: flex; gap: 10px; flex-wrap: wrap; }
.track-stat { background: #f9f9fb; border: 1px solid rgba(0,0,0,0.05); border-radius: 16px; padding: 12px 14px; min-width: 120px; }
.track-stat-label { font-size: 0.78rem; font-weight: 700; color: var(--text-light); }
.track-stat-value { font-size: 1.25rem; font-weight: 900; color: var(--text-color); margin-top: 4px; }
.track-chart-wrap img { width: 100%; height: auto; display: block; border-radius: 18px; }
.track-chart-wrap svg { width: 100%; height: auto; display: block; border-radius: 18px; }
.track-chart-caption { margin-top: 10px; color: var(--text-light); font-size: 0.9rem; }

/* Final CTA */
.final-cta { max-width: var(--container-width); margin: 60px auto; border-radius: 24px; background-color: var(--dark-bg); color: white; padding: 80px 0; text-align: center; }
.final-cta-content { padding: 0 40px; }
.final-cta-title { font-size: 2.5rem; margin-bottom: 20px; font-weight: 700; color: white; }
.final-cta-subtitle { font-size: 1.1rem; margin-bottom: 40px; opacity: 0.8; color: white; }
.final-cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-store-white { padding: 0; background: transparent; border: none; display: flex; align-items: center; height: 48px; }
.btn-store-white:hover { background: transparent; opacity: 0.8; transform: scale(1.02); }
.btn-store-white img { height: 48px; width: auto; display: block; border-radius: 8px; }

/* Footer */
.site-footer { padding: 60px 0 40px; background: white; border-top: 1px solid #eee; font-size: 0.9rem; color: var(--text-light); }
.footer-content { display: flex; flex-direction: column; gap: 40px; }
.footer-main { display: flex; justify-content: space-between; align-items: center; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--text-color); }
.footer-logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--dark-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-logo-icon { height: 20px; width: 20px; }
.footer-logo-text { font-weight: 800; letter-spacing: -0.02em; }
.footer-links { display: flex; gap: 30px; }
.footer-links a { color: var(--text-color); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary-color); }
.footer-bottom-row { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #eee; padding-top: 20px; }

/* Responsive */
@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-content { text-align: center; }
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { justify-content: center; }
    .steps-grid { grid-template-columns: 1fr; gap: 34px; }
    .privacy-grid { grid-template-columns: 1fr; }
    .track-row { grid-template-columns: 1fr; gap: 26px; }
    .track-row.reverse .track-media { order: 0; }
    .track-row.reverse .track-copy { order: 0; }
    .footer-main { flex-direction: column; gap: 20px; }
    .footer-links { flex-direction: column; align-items: center; gap: 15px; }
    .footer-bottom-row { flex-direction: column; gap: 20px; }
    /* Mobile header: show hamburger, menu opens on click */
    .navbar .container { gap: 12px; }
    .nav-toggle { display: inline-flex; }
    .nav-panel {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        margin: 0 20px;
        padding: 14px;
        background: rgba(255,255,255,0.98);
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: 16px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.14);
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        z-index: 150;
    }
    .site-header.is-menu-open .nav-panel { display: flex; }

    .nav-menu { display: flex; flex-direction: column; gap: 10px; }
    .nav-menu a { font-size: 1rem; padding: 10px 10px; border-radius: 10px; }
    .nav-menu a:hover { background: rgba(0,0,0,0.04); color: var(--text-color); }

    .nav-download { width: 100%; text-align: center; padding: 12px 16px; }
    .final-cta { margin: 20px; border-radius: 16px; padding: 40px 0; }
    .blog-header-top { flex-direction: column; align-items: flex-start; }
    .blog-grid { grid-template-columns: 1fr; }
}

/* Language Switcher */
.language-switcher { position: relative; display: inline-block; }
.lang-button { background: none; border: 1px solid #ddd; padding: 5px 10px; border-radius: 6px; cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; gap: 5px; }
.lang-dropdown { display: none; position: absolute; bottom: 100%; right: 0; background: white; border: 1px solid #eee; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); min-width: 150px; overflow: hidden; z-index: 200; }
.language-switcher:hover .lang-dropdown { display: block; }
.lang-option { display: block; padding: 10px 15px; text-align: left; font-size: 0.9rem; color: var(--text-color); }
.lang-option:hover { background: #f5f5f7; }

/* Modal Styles */
.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000; display: none; justify-content: center; align-items: center; }
.modal.is-visible { display: flex; }
.modal-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(5px); }
.modal-content { background: white; padding: 30px; border-radius: 16px; width: 90%; max-width: 500px; position: relative; z-index: 1001; box-shadow: 0 20px 40px rgba(0,0,0,0.2); text-align: left; }
.modal-close { position: absolute; top: 15px; right: 15px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-color); }
.modal h3 { margin-bottom: 10px; color: var(--text-color); }
.modal-text { margin-bottom: 20px; color: var(--text-light); }
.form-row { margin-bottom: 15px; }
.form-row label { display: block; margin-bottom: 5px; font-weight: 500; color: var(--text-color); }
.form-row input { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem; }
.form-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }
.btn-secondary { background: #eee; color: var(--text-color); }
.btn-secondary:hover { background: #ddd; }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 10px; }
.form-message { margin-top: 10px; font-weight: 500; }

/* Legal Pages (Impressum / Datenschutz) */
.legal-page {
    padding: 80px 0 120px;
    background-color: var(--bg-color);
}

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

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-color);
    line-height: 1.2;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 50px 0 20px;
    color: var(--text-color);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 35px 0 15px;
    color: var(--text-color);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.5em;
    color: #444;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.5em;
    margin-bottom: 1.5em;
}

.legal-content li {
    margin-bottom: 0.5em;
    line-height: 1.6;
    color: #444;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

.legal-content a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.legal-content strong {
    font-weight: 600;
    color: var(--text-color);
}
