/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #ec4899;
    --accent: #f59e0b;
    --background: #ffffff;
    --surface: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.nav-brand .logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    bottom: -100px;
    left: -100px;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    top: 50%;
    left: 30%;
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 540px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.feature-item .icon {
    font-size: 1.25rem;
}

.store-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-buttons.large .store-btn img {
    height: 56px;
}

.store-btn {
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.store-btn img {
    height: 48px;
    width: auto;
}

.coming-soon-text {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Phone Mockups - iPhone 15 Pro Style */
.hero-phones {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 650px;
    perspective: 1000px;
}

.phone-mockup {
    position: relative;
    transition: transform 0.3s ease;
}

/* iPhone 15 Pro Frame */
.phone-frame {
    width: 300px;
    height: 620px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-radius: 50px;
    padding: 14px;
    box-shadow: 
        0 60px 120px -30px rgba(0, 0, 0, 0.4),
        0 40px 80px -20px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Dynamic Island Notch */
.phone-notch {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 32px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

/* Screen Container */
.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Screen Image - Fixed to show properly */
.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Side Buttons */
.phone-frame::before,
.phone-frame::after {
    content: '';
    position: absolute;
    background: #1a1a1a;
    border-radius: 2px;
}

/* Volume buttons */
.phone-frame::before {
    width: 4px;
    height: 80px;
    left: -3px;
    top: 120px;
    box-shadow: 
        0 100px 0 #1a1a1a,
        0 200px 0 #1a1a1a;
}

/* Power button */
.phone-frame::after {
    width: 4px;
    height: 100px;
    right: -3px;
    top: 160px;
}

/* Phone Positions */
.phone-1 {
    transform: rotate(-8deg) translateX(-60px) translateY(20px);
    z-index: 2;
}

.phone-2 {
    transform: rotate(8deg) translateX(60px) translateY(60px);
    z-index: 1;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--surface);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: white;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px;
    right: -50px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px -10px var(--primary);
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Screenshots */
.screenshots {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.screenshot-item {
    text-align: center;
}

.screenshot-item .phone-mockup {
    margin-bottom: 24px;
}

.screenshot-item .phone-frame {
    width: 260px;
    height: 540px;
    margin: 0 auto;
    padding: 12px;
    border-radius: 44px;
}

.screenshot-item .phone-notch {
    width: 90px;
    height: 28px;
    top: 18px;
}

.screenshot-item .phone-screen {
    border-radius: 34px;
}

.screenshot-caption h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.screenshot-caption p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 280px;
    margin: 0 auto;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto 40px;
}

.cta .store-buttons {
    justify-content: center;
}

.cta .store-btn {
    background: white;
    border-radius: 12px;
    padding: 4px;
}

.cta .coming-soon-text {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    padding: 64px 0 32px;
    background: var(--text-primary);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.footer-brand span {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 6px 0;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 48px;
    border-radius: var(--radius-xl);
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--surface);
    color: var(--text-primary);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.modal h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal p {
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-features {
        justify-content: center;
    }

    .store-buttons {
        justify-content: center;
    }

    .hero-phones {
        order: -1;
        min-height: 500px;
    }

    .phone-frame {
        width: 260px;
        height: 540px;
        padding: 12px;
        border-radius: 44px;
    }

    .phone-notch {
        width: 90px;
        height: 28px;
        top: 18px;
    }

    .phone-screen {
        border-radius: 34px;
    }

    .phone-1 {
        transform: rotate(-6deg) translateX(-40px) translateY(10px);
    }

    .phone-2 {
        transform: rotate(6deg) translateX(40px) translateY(30px);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        display: flex;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 16px;
        border-radius: 12px;
        transition: background 0.2s;
    }

    .nav-links a:hover {
        background: var(--surface);
    }

    .mobile-menu-btn {
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        transition: background 0.2s;
    }

    .mobile-menu-btn:hover {
        background: var(--surface);
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero Mobile */
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .hero-content {
        gap: 32px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .feature-item {
        font-size: 0.9rem;
        padding: 8px 12px;
        background: var(--surface);
        border-radius: 100px;
    }

    .hero-phones {
        min-height: 320px;
        order: -1;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 0 20px;
    }

    .phone-frame {
        width: 140px;
        height: 290px;
        padding: 6px;
        border-radius: 24px;
    }

    .phone-notch {
        width: 45px;
        height: 14px;
        top: 10px;
    }

    .phone-screen {
        border-radius: 20px;
    }

    .phone-1 {
        transform: rotate(-3deg) translateX(0) translateY(0);
    }

    .phone-2 {
        transform: rotate(3deg) translateX(0) translateY(20px);
    }

    /* Store Buttons Mobile */
    .store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .store-btn img {
        height: 44px;
    }

    /* Features Mobile */
    .features {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    /* How It Works Mobile */
    .how-it-works {
        padding: 60px 0;
    }

    .steps {
        flex-direction: column;
        gap: 24px;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    /* Screenshots Mobile */
    .screenshots {
        padding: 60px 0;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .screenshot-item {
        padding: 0 20px;
    }

    .screenshot-item .phone-mockup {
        margin-bottom: 16px;
    }

    .screenshot-item .phone-frame {
        width: 160px;
        height: 330px;
        padding: 6px;
        border-radius: 28px;
    }

    .screenshot-item .phone-notch {
        width: 55px;
        height: 16px;
        top: 12px;
    }

    .screenshot-item .phone-screen {
        border-radius: 24px;
    }

    .screenshot-caption h4 {
        font-size: 1rem;
    }

    .screenshot-caption p {
        font-size: 0.85rem;
    }

    /* CTA Mobile */
    .cta {
        padding: 60px 0;
    }

    .cta h2 {
        font-size: 1.75rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .store-buttons.large {
        flex-direction: row;
        flex-wrap: wrap;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-column h4 {
        margin-bottom: 12px;
    }

    .footer-column a {
        padding: 4px 0;
    }

    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .navbar .container {
        height: 64px;
    }

    .nav-brand span {
        font-size: 1.1rem;
    }

    .nav-brand .logo {
        width: 36px;
        height: 36px;
    }

    .nav-links {
        top: 64px;
    }

    .hero {
        padding: 90px 0 32px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .feature-item {
        font-size: 0.85rem;
        padding: 6px 10px;
    }

    .hero-phones {
        min-height: 260px;
        gap: 10px;
        padding: 0 10px;
    }

    .phone-frame {
        width: 120px;
        height: 250px;
        padding: 5px;
        border-radius: 22px;
    }

    .phone-notch {
        width: 40px;
        height: 12px;
        top: 10px;
    }

    .phone-screen {
        border-radius: 18px;
    }

    .phone-1 {
        transform: rotate(-2deg) translateX(0) translateY(0);
    }

    .phone-2 {
        transform: rotate(2deg) translateX(0) translateY(15px);
    }

    .store-buttons {
        gap: 10px;
    }

    .store-btn img {
        height: 40px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .step h3 {
        font-size: 1.1rem;
    }

    .step p {
        font-size: 0.9rem;
    }

    .screenshot-item {
        padding: 0 16px;
    }

    .screenshot-item .phone-frame {
        width: 140px;
        height: 290px;
        padding: 5px;
        border-radius: 24px;
    }

    .screenshot-item .phone-notch {
        width: 45px;
        height: 14px;
        top: 10px;
    }

    .screenshot-item .phone-screen {
        border-radius: 20px;
    }

    .screenshot-caption h4 {
        font-size: 0.95rem;
    }

    .screenshot-caption p {
        font-size: 0.8rem;
    }

    .cta h2 {
        font-size: 1.5rem;
    }

    .cta p {
        font-size: 0.9rem;
    }

    .modal-content {
        padding: 32px 24px;
        margin: 16px;
    }

    .modal-icon {
        font-size: 3rem;
    }

    .modal h3 {
        font-size: 1.25rem;
    }

    .modal p {
        font-size: 0.9rem;
    }

    .legal-page {
        padding: 100px 0 40px;
    }

    .legal-header h1 {
        font-size: 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.1rem;
    }

    .legal-section h3 {
        font-size: 1rem;
    }

    .legal-section p,
    .legal-section li {
        font-size: 0.9rem;
    }
}
