/**
 * Layout & Page Structure
 * Site header, navigation, footer, and content page patterns
 * File: assets/css/layout.css
 */

/* ========================================
   SITE HEADER
   ======================================== */
.site-header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo-img {
    height: 48px;
    width: auto;
    transition: opacity 0.2s;
}

.site-logo:hover .site-logo-img {
    opacity: 0.85;
}

.site-tagline {
    color: #4a5568;
    font-size: 0.85rem;
    padding-left: 0.75rem;
    border-left: 2px solid #e2e8f0;
}

/* Contractor redirect link on front page */
.contractor-redirect-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 1rem;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #86efac;
    border-radius: 50px;
    color: #166534;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
}

.contractor-redirect-link:hover {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-color: #4ade80;
    color: #15803d;
    transform: translateX(2px);
}

.contractor-redirect-link .mobile-text {
    display: none;
}

.contractor-redirect-link .desktop-text {
    display: inline;
}

@media (max-width: 768px) {
    .contractor-redirect-link {
        margin-left: 0;
        margin-top: 0.25rem;
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
    
    .contractor-redirect-link .mobile-text {
        display: inline;
    }
    
    .contractor-redirect-link .desktop-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .site-branding {
        flex-wrap: wrap;
    }
    
    .contractor-redirect-link {
        flex-basis: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* Contractor business name in header */
.contractor-business-name {
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.contractor-business-name a {
    color: #2d3748;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
}

.contractor-business-name a:hover {
    color: var(--primary, #6b46c1);
}

/* ========================================
   NAVIGATION
   ======================================== */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.main-navigation a:not(.btn) {
    padding: 0.5rem 1rem;
    color: #4a5568;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}

.main-navigation a:not(.btn):hover {
    background: #f7fafc;
    color: #2d3748;
}

.main-navigation a:not(.btn).active {
    background: #edf2f7;
    color: var(--primary, #6b46c1);
    font-weight: 600;
}

/* Nav dropdowns */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: #4a5568;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-dropdown-toggle:hover {
    background: #f7fafc;
    color: #2d3748;
}

.dropdown-arrow {
    color: #4a5568;
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.nav-dropdown.active .dropdown-arrow,
.nav-dropdown-toggle:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    min-width: 200px;
    display: none;
    z-index: 100;
}

.nav-dropdown-menu.active {
    display: block;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

.nav-dropdown-menu a:hover {
    background: #f7fafc;
    color: var(--primary, #6b46c1);
}

.nav-dropdown-menu a svg {
    flex-shrink: 0;
}

/* ========================================
   USER MENU
   ======================================== */
.user-menu {
    position: relative;
}

.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.user-menu-toggle:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary, #6b46c1) 0%, #805ad5 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.user-name {
    color: #2d3748;
    font-weight: 500;
}

.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    min-width: 200px;
    display: none;
    z-index: 100;
}

.user-menu-dropdown.active {
    display: block;
}

.user-menu-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

.user-menu-dropdown a:hover {
    background: #f7fafc;
    color: var(--primary, #6b46c1);
}

/* ========================================
   HEADER CTA BUTTONS
   ======================================== */
.btn-cta-primary {
    background: linear-gradient(135deg, var(--primary, #6b46c1) 0%, var(--primary-hover, #805ad5) 100%);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 4px rgba(107, 70, 193, 0.3);
    border: none;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, var(--ott-accent, #f6ad55) 0%, var(--ott-accent-hover, #ed8936) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(var(--ott-accent-rgb, 237, 137, 54), 0.4);
}

.btn-cta-secondary {
    background: white;
    color: var(--primary, #6b46c1);
    padding: 0.625rem 1.25rem;
    border: 2px solid var(--primary, #6b46c1);
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-cta-secondary:hover {
    background: linear-gradient(135deg, var(--ott-accent, #f6ad55) 0%, var(--ott-accent-hover, #ed8936) 100%);
    color: var(--ott-accent-btn-text, white);
    border-color: var(--ott-accent-hover, #ed8936);
    transform: translateY(-1px);
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: #4a5568;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Mobile Auth Buttons (Login/Signup next to hamburger) */
.mobile-auth-buttons {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.mobile-auth-buttons .btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

.mobile-auth-buttons .btn-sm {
    min-height: auto;
}

/* ========================================
   SITE FOOTER
   ======================================== */
.site-footer {
    background: #2d3748;
    color: #e2e8f0;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-column p {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1.5rem;
    text-align: center;
    color: #a0aec0;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-mission {
    font-size: 0.9rem;
    color: #cbd5e0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    color: #cbd5e0;
    font-size: 1.5rem;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: white;
}

/* Footer Logo with Tagline */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo-img {
    max-width: 220px;
    height: auto;
    filter: brightness(1.1);
}

/* About Page Logo */
.about-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-logo-img {
    max-width: 300px;
    height: auto;
    background: white;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Contact Page Logo */
.contact-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-logo-img {
    max-width: 280px;
    height: auto;
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.contact-form .form-row {
    margin-bottom: 1.25rem;
}

.contact-form label .optional {
    color: var(--text-muted, #718096);
    font-weight: 400;
    font-size: 0.85rem;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Success State */
.contact-success {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-success .success-icon {
    color: var(--color-success, #48bb78);
    margin-bottom: 1rem;
}

.contact-success h2 {
    color: var(--color-success-text, #22543d);
    margin-bottom: 0.75rem;
}

.contact-success p {
    color: var(--text-secondary, #4a5568);
    margin-bottom: 1.5rem;
}

/* Contact Info Section */
.contact-info-section {
    background: var(--bg-gray-50, #f7fafc);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.contact-info-section h3 {
    font-size: 1.125rem;
    color: var(--text-primary, #2d3748);
    margin-bottom: 1.25rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.contact-method-icon {
    color: var(--primary, #6b46c1);
    flex-shrink: 0;
}

.contact-method-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-method-content strong {
    font-size: 0.85rem;
    color: var(--text-muted, #718096);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.contact-method-content a,
.contact-method-content span {
    color: var(--text-primary, #2d3748);
    font-size: 1rem;
}

.contact-method-content a:hover {
    color: var(--primary, #6b46c1);
}

.contact-note {
    padding: 1rem;
    background: var(--color-info-bg, #ebf8ff);
    border-radius: 8px;
    border-left: 4px solid var(--color-info, #3182ce);
}

.contact-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-info-text, #1a365d);
    line-height: 1.6;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-method {
        padding: 0.875rem;
    }
}

/* Verification Sent State */
.contact-verify-sent {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-verify-sent .verify-icon {
    color: var(--primary, #6b46c1);
    margin-bottom: 1rem;
}

.contact-verify-sent h2 {
    color: var(--text-primary, #2d3748);
    margin-bottom: 0.75rem;
}

.contact-verify-sent p {
    color: var(--text-secondary, #4a5568);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-verify-sent .verify-note {
    background: var(--color-info-bg, #ebf8ff);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: left;
}

.contact-verify-sent .verify-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-info-text, #1a365d);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-verify-sent .verify-check-spam {
    font-size: 0.9rem;
    color: var(--text-muted, #718096);
    margin-top: 1.5rem;
}

/* Error State */
.contact-error {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-error .error-icon {
    color: var(--color-error, #e53e3e);
    margin-bottom: 1rem;
}

.contact-error h2 {
    color: var(--color-error-text, #742a2a);
    margin-bottom: 0.75rem;
}

.contact-error p {
    color: var(--text-secondary, #4a5568);
    margin-bottom: 1.5rem;
}

/* Form Notes & Hints */
.contact-form .field-hint {
    font-size: 0.85rem;
    color: var(--text-muted, #718096);
    margin-top: 0.375rem;
}

.contact-form .form-note {
    font-size: 0.85rem;
    color: var(--text-muted, #718096);
    text-align: center;
    margin-top: 0.75rem;
}

/* ========================================
   PAGE CONTAINERS
   ======================================== */
.content-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem;
}

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

.content-page-wide {
    max-width: 1000px;
    margin: 0 auto;
}

/* Section spacing */
.content-section {
    margin-bottom: 5rem;
}

.content-section-sm {
    margin-bottom: 3rem;
}

/* ========================================
   PAGE HEADERS
   ======================================== */
.content-header {
    text-align: center;
    margin-bottom: 3.75rem;
}

.content-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: #1a202c;
}

.content-header .subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-title {
    color: #2d3748;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    text-align: center;
}

.section-title-sm {
    color: #2d3748;
    margin-bottom: 0.625rem;
    font-size: 1.125rem;
}

/* ========================================
   CONTENT GRIDS
   ======================================== */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.875rem;
}

.content-grid.gap-4 {
    gap: 1.5rem;
}

.content-grid.gap-6 {
    gap: 2rem;
}

/* ========================================
   CONTENT CARDS
   ======================================== */
.content-card {
    background: white;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.content-card-gray {
    background: #f7fafc;
    padding: 1.875rem;
    border-radius: 8px;
}

.content-card h3 {
    color: #2d3748;
    margin-bottom: 0.9375rem;
    font-size: 1.25rem;
}

.content-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
}

/* Feature icons */
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.9375rem;
}

/* ========================================
   STEP CARDS (How It Works)
   ======================================== */
.step-card {
    background: #f7fafc;
    padding: 1.875rem;
    border-radius: 8px;
    text-align: center;
}

.step-title {
    color: #2d3748;
    margin-bottom: 0.9375rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.step-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
}

/* ========================================
   BENEFIT CARDS
   ======================================== */
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.benefit-card h3 {
    font-size: 1.125rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #718096;
    font-size: 0.95rem;
    margin: 0;
}

.benefit-title {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.benefit-text {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-section {
    margin-bottom: 3rem;
}

.faq-section h2 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #2d3748;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 48px;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f7fafc;
}

.faq-question.active {
    background: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
}

.faq-answer {
    display: none;
    padding: 1.25rem 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.faq-answer.show {
    display: block;
}

.faq-toggle {
    font-size: 1.25rem;
    color: var(--primary, #6b46c1);
    transition: transform 0.3s;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

/* ========================================
   HERO SECTIONS
   ======================================== */
.hero-gradient {
    background: linear-gradient(135deg, var(--primary, #6b46c1) 0%, #805ad5 50%, #9f7aea 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 3rem;
}

.hero-gradient h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-gradient p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* ========================================
   CTA SECTIONS
   ======================================== */
.cta-section {
    text-align: center;
    margin-top: 3.75rem;
}

.cta-section h2 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary, #6b46c1);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #4a5568;
    font-size: 1rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-info-card {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.125rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.legal-page h1 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.legal-page .last-updated {
    color: #718096;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.legal-page h2 {
    font-size: 1.375rem;
    color: #2d3748;
    margin: 2rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.legal-page h3 {
    font-size: 1.125rem;
    color: #2d3748;
    margin: 1.5rem 0 0.75rem;
}

.legal-page p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-page ul, .legal-page ol {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}
