:root {
    --primary: #ffffff;
    --secondary: #a1a1aa;
    --accent: #d4d4d8;
    --background: #000000;
    --text: #ffffff;
    --card-bg: #0a0a0a;
    --border: #1f1f1f;
    --accent-green: #10b981;
    --accent-blue: #3b82f6;
}

/* Light Mode */
[data-theme="light"] {
    --background: #ffffff;
    --text: #000000;
    --card-bg: #f9fafb;
    --border: #e5e7eb;
    --secondary: #6b7280;
    --accent: #374151;
}

[data-theme="light"] body {
    background: #ffffff;
}

[data-theme="light"] header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e5e7eb;
}

[data-theme="light"] .btn-primary {
    background: #000000;
    color: #ffffff;
}

[data-theme="light"] .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
}

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

[data-theme="light"] .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: #374151;
}

[data-theme="light"] .mobile-menu-button svg line {
    stroke: #000000;
}

[data-theme="light"] #como-funciona,
[data-theme="light"] #casos-uso,
[data-theme="light"] #precios,
[data-theme="light"] footer {
    background: #ffffff;
}

[data-theme="light"] .step,
[data-theme="light"] .caso,
[data-theme="light"] .plan-card {
    background: #f9fafb;
    border-color: #e5e7eb;
}

[data-theme="light"] .step:hover,
[data-theme="light"] .caso:hover,
[data-theme="light"] .plan-card:hover {
    border-color: #374151;
}

[data-theme="light"] .step-number {
    background: #ffffff;
    border-color: #e5e7eb;
}

[data-theme="light"] .speed-badge {
    background: #000000;
    color: #ffffff;
}

[data-theme="light"] .plan-cta {
    background: #000000;
    color: #ffffff;
}

[data-theme="light"] footer {
    border-top: 1px solid #e5e7eb;
}

[data-theme="light"] .footer-bottom {
    border-top: 1px solid #e5e7eb;
}

[data-theme="light"] .integration-icon {
    filter: brightness(0) invert(0);
    opacity: 0.6;
}

[data-theme="light"] .integration-icon:hover {
    opacity: 1;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000000;
    color: var(--text);
    line-height: 1.6;
    padding-top: 4rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 5%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    gap: 2rem;
}

/* Logo V2 */
.logo-container-v2 {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-v2 {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
}

/* Center Navigation */
.nav-center {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-center a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.8;
}

.nav-center a:hover {
    opacity: 1;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn-secondary {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.btn-secondary:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
}

.btn-primary {
    background: var(--text);
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1.6rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

/* Theme Toggle */
.theme-toggle {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}

.theme-toggle svg {
    transition: all 0.3s ease;
}

/* Como Funciona Section - Corp Grade Design */
#como-funciona {
    padding: 8rem 5%;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

#como-funciona::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 6rem;
}

.badge-instant {
    display: inline-block;
    background: linear-gradient(135deg, var(--text), #10b981);
    color: var(--background);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 6px 30px rgba(16, 185, 129, 0.5); }
}

.how-it-works-header h2 {
    color: var(--text);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.how-it-works-header .section-subtitle {
    color: var(--secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline Container */
.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--border) 10%, var(--border) 90%, transparent);
    transform: translateX(-50%);
}

.timeline-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step:nth-child(even) .step-content {
    grid-column: 1;
    grid-row: 1;
}

.timeline-step:nth-child(even) .step-marker {
    grid-column: 2;
}

.timeline-step:nth-child(odd) .step-content {
    grid-column: 3;
}

.timeline-step:nth-child(odd) .step-marker {
    grid-column: 2;
}

/* Step Marker */
.step-marker {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.step-pulse {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--text);
    opacity: 0.1;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.step-number-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--background);
    border: 3px solid var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-number-circle.completed {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-color: #10b981;
    transform: scale(1.1);
}

.step-number-circle.completed svg {
    width: 30px;
    height: 30px;
    animation: checkmark-draw 0.5s ease-out forwards;
}

@keyframes checkmark-draw {
    0% {
        stroke-dasharray: 50;
        stroke-dashoffset: 50;
        opacity: 0;
    }
    100% {
        stroke-dasharray: 50;
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

/* Step Content */
.step-content {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

[data-theme="light"] .step-content {
    background: #f9fafb;
    border-color: #e5e7eb;
}

.step-content::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, var(--text), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    border-color: var(--text);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.step-content:hover::before {
    opacity: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    color: var(--text);
}

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

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 700;
}

.step-content p {
    color: var(--secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.time-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

.time-badge svg {
    width: 16px;
    height: 16px;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 6rem auto 0;
    padding-top: 4rem;
    border-top: 1px solid var(--border);
}

.trust-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: var(--text);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text), #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-label {
    color: var(--secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .timeline-step {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-step:nth-child(even) .step-content,
    .timeline-step:nth-child(odd) .step-content {
        grid-column: 1;
        grid-row: 2;
    }
    
    .timeline-step:nth-child(even) .step-marker,
    .timeline-step:nth-child(odd) .step-marker {
        grid-column: 1;
        grid-row: 1;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #como-funciona {
        padding: 4rem 5%;
    }
    
    .how-it-works-header h2 {
        font-size: 2.5rem;
    }
    
    .how-it-works-header .section-subtitle {
        font-size: 1rem;
    }
    
    .timeline-step {
        margin-bottom: 3rem;
    }
    
    .step-content {
        padding: 2rem;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-item {
        padding: 1.5rem 1rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
}

/* Casos de Uso */
#casos-uso {
    padding: 8rem 5%;
    background: #000000;
}

#casos-uso h2 {
    color: var(--text);
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 6rem;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
}

#casos-uso h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
}

.casos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.caso {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.caso:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.caso i {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.caso:nth-child(1) i {
    color: var(--accent-green);
}

.caso:nth-child(2) i {
    color: var(--accent-blue);
}

.caso:nth-child(3) i {
    color: #a78bfa;
}

.caso:nth-child(4) i {
    color: #f472b6;
}

.caso:nth-child(5) i {
    color: #fbbf24;
}

.caso:nth-child(6) i {
    color: #34d399;
}

.caso:hover i {
    transform: scale(1.1);
}

.caso h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 700;
}

.caso p {
    color: var(--secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Integration icons */
.integration-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.integration-icon {
    width: 32px;
    height: 32px;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.integration-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Pricing Section */
#precios {
    padding: 8rem 5%;
    background: #000000;
}

#precios h2 {
    color: var(--text);
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 6rem;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
}

#precios h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.plan:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.plan.popular {
    border-color: var(--text);
}

.plan.popular::after {
    content: "Más Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text);
    color: #000000;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.setup-fee {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 1.5rem 0;
    color: var(--text);
}

.price span {
    font-size: 1rem;
    color: var(--secondary);
}

.plan ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.plan li {
    margin: 0.8rem 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.plan li::before {
    content: '→';
    color: var(--text);
    font-weight: bold;
}

.plan-cta {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--text);
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.plan-cta:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Footer */
footer {
    background: #000000;
    padding: 6rem 5% 2rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-weight: 700;
}

.footer-column a {
    display: block;
    color: var(--secondary);
    text-decoration: none;
    margin: 0.8rem 0;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--text);
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Desktop Login Button */
.desktop-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.desktop-login-btn svg {
    width: 16px;
    height: 16px;
}

/* Mobile Header Login Icon */
.mobile-header-login {
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--text);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.mobile-header-login:hover {
    opacity: 1;
}

.mobile-header-login svg {
    width: 20px;
    height: 20px;
}

/* Mobile Menu Items */
.mobile-menu-items {
    display: none;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: 1rem;
}

.mobile-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.mobile-menu-items .btn-primary {
    background: var(--text);
    color: var(--background);
    text-align: center;
    justify-content: center;
}

.mobile-menu-items .btn-primary:hover {
    opacity: 0.9;
}

/* Burger Menu */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.burger-line {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-button.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-button.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-button.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hide mobile elements on desktop */
@media (min-width: 769px) {
    img[src="img/mobile.svg"],
    .mobile-menu-button,
    .mobile-menu-items,
    .mobile-login-btn,
    .mobile-header-login {
        display: none !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        gap: 1rem;
        padding: 1rem 5%;
    }

    .nav-center {
        display: none;
    }
    
    .nav-actions .desktop-login-btn,
    .nav-actions .desktop-signup-btn {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .mobile-header-login {
        display: flex;
    }

    /* Hide language text on mobile, show only flag */
    .language-switcher .lang-text {
        display: none;
    }

    .nav-center.active {
        display: flex;
        position: fixed;
        top: 4rem;
        left: 0;
        right: 0;
        background: var(--background);
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border);
        z-index: 999;
        max-height: calc(100vh - 4rem);
        overflow-y: auto;
    }

    .nav-center.active .mobile-menu-items {
        display: flex;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }

    .footer-column {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 3.5rem;
    }

    .casos-grid {
        grid-template-columns: 1fr;
    }

    #como-funciona h2,
    #casos-uso h2,
    #precios h2 {
        font-size: 2.2rem;
    }
}

/* Legal Pages */
.legal-content {
    padding: 8rem 5% 4rem;
    min-height: calc(100vh - 300px);
    background: #000000;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

@media (max-width: 768px) {
    .nav-right {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 0.5rem;
    }
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text);
    font-weight: 800;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.legal-section p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-section ul {
    list-style: none;
    margin: 1.5rem 0;
}

.legal-section ul li {
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.legal-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--text);
    font-weight: bold;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 6rem 1rem 2rem;
    }

    .legal-container {
        padding: 2rem;
    }

    .legal-container h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }
}
