:root {
    /* Brand Colors */
    --primary-blue: #3b82f6;
    --primary-purple: #a855f7;

    /* Semantic Colors - Dark (Default) */
    --bg-body: #0f172a;
    --bg-card: rgba(30, 41, 59, 0.7);
    --bg-card-hover: rgba(36, 49, 69, 0.9);
    --bg-input: rgba(15, 23, 42, 0.6);
    --bg-input-focus: rgba(15, 23, 42, 0.9);
    --bg-nav-scrolled: rgba(15, 23, 42, 0.85);
    --bg-surface-subtle: rgba(255, 255, 255, 0.05);

    --text-main: #f8fafc;
    --text-muted: #94a3b8;

    --border-glass: rgba(255, 255, 255, 0.1);
    --shadow-soft: rgba(0, 0, 0, 0.5);

    --nav-text-hover: #ffffff;
}

[data-theme="light"] {
    /* Semantic Colors - Light */
    --bg-body: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-card-hover: rgba(245, 245, 245, 0.9);
    --bg-input: rgba(241, 245, 249, 0.6);
    --bg-input-focus: rgba(255, 255, 255, 0.9);
    --bg-nav-scrolled: rgba(255, 255, 255, 0.85);
    --bg-surface-subtle: rgba(15, 23, 42, 0.05);

    --text-main: #0f172a;
    --text-muted: #64748b;

    --border-glass: rgba(15, 23, 42, 0.1);
    --shadow-soft: rgba(15, 23, 42, 0.1);

    --nav-text-hover: #0f172a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Utilities */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    -webkit-text-fill-color: initial;
    /* Override gradient text */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
}

/* Hero Section */
header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    /* overflow: hidden; Removed to fix hard line cut-off */
}

/* Background blob effects */
.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: -1;
}

.blob-1 {
    background: var(--primary-blue);
    top: -100px;
    left: -100px;
    animation: float 10s infinite alternate;
}

.blob-2 {
    background: var(--primary-purple);
    bottom: -100px;
    right: -100px;
    animation: float 12s infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 80px;
    /* Space for nav */
}

.trusted-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--bg-surface-subtle);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.trusted-pill .dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--primary-blue);
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    max-width: fit-content;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

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

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 20px 80px var(--shadow-soft);
    /* border: 8px solid #333; Removed border */
    /* Pseudo-bezel */
    transform: rotate(-5deg) translateY(0px);
    /* Initial state */
    animation: float-phone 6s ease-in-out infinite;
}

@keyframes float-phone {

    0%,
    100% {
        transform: rotate(-5deg) translateY(0px);
    }

    50% {
        transform: rotate(-5deg) translateY(-20px);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: var(--bg-nav-scrolled);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-glass);
}

nav .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    /* Optional rounding */
    object-fit: cover;
}

.nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-center a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-center a:hover {
    color: var(--nav-text-hover);
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.nav-right .btn {
    color: white;
}

/* Features */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.review-card {
    transition: all 0s;
}

.review-card:hover {
    background: var(--bg-card-hover);
    border: 1px solid var(--primary-blue);
}

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

.feature-card {
    padding: 40px;
    transition: all 0s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border: 1px solid var(--primary-blue);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    background: none;
    -webkit-text-fill-color: var(--text-main);
    color: var(--text-main);
}

/* Gallery Section */
.gallery-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    user-select: none;
    -webkit-mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
    mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
}


.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-control:hover {
    background: var(--bg-card);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

[data-theme="light"] .carousel-control {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .carousel-control:hover {
    background: rgba(255, 255, 255, 0.9);
}


.carousel-control svg {
    width: 24px;
    height: 24px;
}



.gallery-track {
    display: flex;
    gap: 30px;
    width: max-content;
}






.gallery-item {
    width: 300px;
    /* Fixed width for carousel items */
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    flex-shrink: 0;
}


.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 40px var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}




/* FAQ Section */
#faq {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq-item {
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-glass);
}

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

.faq-question {
    width: 100%;
    padding: 30px 0;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-plus-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.faq-plus-icon span {
    position: absolute;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Horizontal line */
.faq-plus-icon span:first-child {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Vertical line */
.faq-plus-icon span:last-child {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.faq-answer p {
    padding-bottom: 20px;
    padding-right: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Active State */
.faq-item.active {
    border-bottom-color: var(--primary-blue);
}

/* Max-height will be set dynamically via JavaScript */

/* Transform to X */
.faq-item.active .faq-plus-icon span:first-child {
    transform: translateY(-50%) rotate(45deg);
    background-color: var(--primary-purple);
}

.faq-item.active .faq-plus-icon span:last-child {
    transform: translateX(-50%) rotate(45deg);
    background-color: var(--primary-purple);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px 0;
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0;
    }
}

/* Contact Section */
#contact .section-header {
    margin-bottom: 40px;
    /* Reduced from default 80px */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.support-info {
    padding: 30px;
    border-radius: 20px;
}

.support-info h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--text-main);
    background: none;
    -webkit-text-fill-color: var(--text-main);
}

.support-text {
    margin-bottom: 30px;
    color: var(--text-muted);
}

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

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--text-main);
}

.info-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface-subtle);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    margin-right: 20px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.info-icon {
    width: 24px;
    height: 24px;
}

.contact-form-container {
    width: 100%;
    /* Removed max-width: 600px; */
    padding: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--bg-input-focus);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

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

/* Footer */
footer {
    margin-top: 60px;
    padding: 20px 0;
    /* Compact padding */
    border-top: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "social copyright links";
    gap: 20px;
    align-items: center;
}

.footer-col-social {
    grid-area: social;
    display: flex;
    align-items: center;
}

.footer-col-copyright {
    grid-area: copyright;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-col-privacy,
.footer-col-terms {
    grid-area: links;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Position legal links next to each other on desktop */
.footer-col-privacy {
    margin-right: 140px;
    /* Space for TOS */
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-surface-subtle);
    border: 1px solid var(--border-glass);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-muted);
}

.social-links a:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.social-icon {
    transition: none;
    /* Let parent handle color transition mostly, or keep it */
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Footer Legal Links */
.footer-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    header {
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: left;
        /* Changed from center */
        gap: 40px;
        padding-top: 100px;
    }

    .section-header {
        text-align: left;
        /* Changed from center */
    }

    .section-header p {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        text-align: left;
        /* Changed from center */
        gap: 30px;
    }

    .support-info {
        padding: 0;
        text-align: left;
    }

    .support-info h3 {
        text-align: left;
    }

    .info-item {
        justify-content: flex-start;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .form-group label {
        text-align: left;
    }

    .footer-grid {
        display: grid;
        grid-template-areas:
            "social privacy"
            "copyright terms";
        grid-template-columns: 1fr auto;
        gap: 20px;
        align-items: center;
        text-align: left;
    }

    .footer-col-social {
        grid-area: social;
        justify-content: flex-start;
    }

    .footer-col-privacy {
        grid-area: privacy;
        justify-content: flex-end;
        margin-right: 0;
    }

    .footer-col-copyright {
        grid-area: copyright;
        justify-content: flex-start;
        white-space: nowrap;
        font-size: 0.8rem;
    }

    .footer-col-terms {
        grid-area: terms;
        justify-content: flex-end;
    }

    .social-links a {
        background: none !important;
        border: none !important;
        width: auto !important;
        height: auto !important;
        padding: 5px;
    }

    .social-links a:hover {
        transform: translateY(-2px);
    }

    .hero-text p {
        margin: 0 0 30px 0;
        /* Changed from auto */
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .nav-center {
        display: none;
    }

    .nav-right .btn-primary {
        display: none;
        /* Hide download button on mobile header to save space */
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        color: var(--text-main);
        cursor: pointer;
        padding: 5px;
    }

    .mobile-menu-toggle svg {
        width: 28px;
        height: 28px;
    }

    nav .container {
        grid-template-columns: auto 1fr auto;
        gap: 15px;
    }

    .hero-stats {
        margin: 0 0 30px 0;
        /* Changed from auto */
    }

    .hero-image img {
        max-width: 250px;
        margin: 0;
        /* Changed from auto */
    }
}

/* Mobile Drawer Styles */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: var(--bg-body);
    z-index: 1001;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    border-left: 1px solid var(--border-glass);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
}

.drawer-content {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-content a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s;
}

.drawer-content a:hover {
    color: var(--primary-blue);
}

.drawer-cta {
    margin-top: 20px;
    text-align: center;
}

/* Hide mobile toggle on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}


/* Theme Toggle */
/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 0;
    position: relative;
    width: 60px;
    height: 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    /* Track background */
    background: #334155;
    transition: background 0.3s ease;
    border: 1px solid var(--border-glass);
}

.theme-toggle:hover {
    background: #475569;
}

[data-theme="light"] .theme-toggle {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

[data-theme="light"] .theme-toggle:hover {
    background: #cbd5e1;
}

.toggle-track {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px;
}

.toggle-indicator {
    position: absolute;
    left: 2px;
    top: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .toggle-indicator {
    background: white;
    transform: translateX(30px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-indicator svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
}

.sun-icon {
    color: #fbbf24;
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
}

.moon-icon {
    color: #a855f7;
    opacity: 1;
    transform: scale(1) rotate(0);
}

[data-theme="light"] .sun-icon {
    opacity: 1;
    transform: scale(1) rotate(0);
}

[data-theme="light"] .moon-icon {
    opacity: 0;
    transform: scale(0.5) rotate(90deg);
}

/* Legal Pages Styles */
.legal-content {
    padding: 180px 0 100px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 3.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.legal-article {
    background: var(--bg-card);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
}

.legal-article h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    background: none;
    -webkit-text-fill-color: var(--text-main);
    color: var(--text-main);
}

.legal-article p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.legal-article ul {
    margin-bottom: 30px;
    padding-left: 25px;
    color: var(--text-muted);
}

.legal-article li {
    margin-bottom: 12px;
}