/*
 * ONEZUP - Improved & Refactored Stylesheet
 * 1. Imports 'Poppins' font
 * 2. Uses Bootstrap 5 CSS variables for clean light/dark theming
 * 3. Removes over 750 lines of unused/conflicting CSS
 * 4. Adds consistent styling for cards and icons
 * 5. Improves responsive design & fixes all light/dark mode text issues
 */

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* Light Theme Variables (Leveraging Bootstrap 5) */
:root {
    --bs-primary: #8e6100;
    --bs-primary-rgb: 0, 122, 255;
    --bs-primary-dark: #feff00;
    --bs-primary-subtle: #cfe4ff;
    --bs-primary-emphasis: #004999;

    --bs-body-bg: #ffffff;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-body-color: #212529;
    --bs-secondary-color: #6c757d;
    --bs-body-tertiary: #f8f9fa;
    --bs-body-tertiary-rgb: 248, 249, 250;
    --bs-border-color: #dee2e6;
    --bs-surface: var(--bs-body-bg);

    --bs-font-sans-serif: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    --bs-border-radius: 0.5rem;
    --bs-border-radius-lg: 0.75rem;

    --bs-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --bs-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.125);
}

/* ==========================================================
GOLD THEME OVERRIDE FOR ALL BOOTSTRAP PRIMARY CLASSES
========================================================== */

/* Core Gold Shades */
:root {
    --gold-base: #d4af37;
    /* Main gold */
    --gold-dark: #b9972f;
    /* Darker gold */
    --gold-light: #f5e7a1;
    /* Lighter gold */
    --gold-very-light: #fff8dc;
    /* Pale gold */
}

/* === BACKGROUNDS === */
.bg-primary {
    background-color: var(--gold-base) !important;
    color: #fff !important;
}

.bg-primary-dark,
.bg-primary-strong,
.bg-gradient-primary {
    background-color: var(--gold-dark) !important;
    color: #fff !important;
}

.bg-primary-light,
.bg-primary-subtle {
    background-color: var(--gold-light) !important;
    color: #000 !important;
}

.bg-primary-very-light {
    background-color: var(--gold-very-light) !important;
    color: #000 !important;
}

/* === TEXT COLORS === */
.text-primary {
    color: var(--gold-base) !important;
}

.text-primary-dark {
    color: var(--gold-dark) !important;
}

.text-primary-light {
    color: var(--gold-light) !important;
}

/* === BUTTONS === */
.btn-primary {
    background-color: var(--gold-base) !important;
    border-color: var(--gold-base) !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.show>.btn-primary.dropdown-toggle {
    background-color: var(--gold-dark) !important;
    border-color: var(--gold-dark) !important;
    color: #fff !important;
}

.btn-outline-primary {
    color: var(--gold-base) !important;
    border-color: var(--gold-base) !important;
    background-color: transparent !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--gold-base) !important;
    color: #fff !important;
}

/* Disabled buttons */
.btn-primary:disabled,
.btn-primary.disabled {
    background-color: var(--gold-light) !important;
    border-color: var(--gold-light) !important;
    color: #666 !important;
}

/* === BORDERS === */
.border-primary {
    border-color: var(--gold-base) !important;
}

.border-primary-dark {
    border-color: var(--gold-dark) !important;
}

.border-primary-light {
    border-color: var(--gold-light) !important;
}

/* === LINKS === */
.link-primary {
    color: var(--gold-base) !important;
    text-decoration: none !important;
}

.link-primary:hover,
.link-primary:focus {
    color: var(--gold-dark) !important;
    text-decoration: underline !important;
}

/* === BADGES === */
.badge.bg-primary {
    background-color: var(--gold-base) !important;
    color: #fff !important;
}

/* === ALERTS === */
.alert-primary {
    background-color: var(--gold-very-light) !important;
    border-color: var(--gold-base) !important;
    color: #6c4c0d !important;
}

/* === PROGRESS BARS === */
.progress-bar.bg-primary {
    background-color: var(--gold-base) !important;
}

/* === TEXT SELECTION === */
::selection {
    background-color: var(--gold-base) !important;
    color: #fff !important;
}

/* === NAV ITEMS / ACTIVE LINKS === */
.nav-link.active,
.nav-pills .nav-link.active,
.navbar-nav .nav-link.active {
    color: #d4af37 !important;
}

/* === CUSTOM UTILITIES === */
.bg-primary-emphasis {
    background-color: var(--gold-dark) !important;
    color: #fff !important;
}

.text-bg-primary {
    background-color: var(--gold-base) !important;
    color: #fff !important;
}

/* Dark Theme Variables (Data attribute driven by app.js) */
[data-theme="dark"] {
    --bs-primary: #8e6100;
    --bs-primary-rgb: 10, 132, 255;
    --bs-primary-dark: #e19c00;
    --bs-primary-subtle: #032a5c;
    --bs-primary-emphasis: #399cff;

    --bs-body-bg: #121212;
    /* Dark background */
    --bs-body-bg-rgb: 18, 18, 18;
    --bs-body-color: #f8f9fa;
    /* Light text */
    --bs-secondary-color: #adb5bd;
    --bs-body-tertiary: #1c1c1e;
    /* Dark surface */
    --bs-body-tertiary-rgb: 28, 28, 30;
    --bs-border-color: #3a3a3c;
    --bs-surface: var(--bs-body-tertiary);

    --bs-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    --bs-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select {
    background-color: #2c2c2e;
    border-color: #3a3a3c;
    color: var(--bs-body-color);
}

[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus {
    background-color: #2c2c2e;
    color: var(--bs-body-color);
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

[data-theme="dark"] .offcanvas {
    background-color: var(--bs-body-tertiary);
    color: var(--bs-body-color);
}

[data-theme="dark"] .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

[data-theme="dark"] .modal-content {
    background-color: var(--bs-body-tertiary);
    border-color: var(--bs-border-color);
}

[data-theme="dark"] .qr-code-placeholder {
    background: var(--bs-body-tertiary);
}

[data-theme="dark"] .btn-dark {
    background-color: #f8f9fa;
    color: #121212;
    border-color: #f8f9fa;
}

[data-theme="dark"] .btn-dark:hover {
    background-color: #e2e6ea;
    border-color: #e2e6ea;
}

[data-theme="dark"] .newsletter-form .form-control {
    background-color: #2c2c2e;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--bs-font-sans-serif);
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

section {
    padding: 4rem 0;
}

@media (min-width: 992px) {
    section {
        padding: 6rem 0;
    }
}

/* Typography */
.lead {
    font-weight: 400;
    /* color: var(--bs-secondary-color); */
}

.text-gradient {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-primary-dark));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--bs-secondary-color);
}

/* Navigation */
.navbar.fixed-top {
    background-color: rgba(var(--bs-body-tertiary-rgb), 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
    border-bottom: 1px solid var(--bs-border-color);
}

.navbar .nav-link {
    font-weight: 500;
    transition: color 0.2s ease;
    color: var(--bs-secondary-color);
}

.navbar .nav-link:hover {
    color: var(--bs-body-color);
}

.navbar .nav-link.active {
    color: var(--bs-primary) !important;
    font-weight: 600;
}

.language-btn {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
}

#theme-toggle {
    width: 38px;
    /* Fixed width for icon swap */
}

/* Hero Section */
.hero-section {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--bs-body-tertiary);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(var(--bs-primary-rgb), 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(var(--bs-primary-rgb), 0.1) 0%, transparent 40%);
    animation: float 6s ease-in-out infinite;
}

.hero-section .display-3 {
    font-weight: 800;
}

@media (max-width: 768px) {
    .hero-section .display-3 {
        font-size: 2.5rem;
    }

    .hero-mockup {
        margin-top: 3rem;
    }
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    margin: 0 auto;
    background: #111;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: var(--bs-body-tertiary);
    border-radius: 30px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.app-interface {
    text-align: center;
    height: 100%;
}

.app-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 30px;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.service-grid .service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: var(--bs-shadow);
    margin: 0 auto;
}

/* Consistent Card Styling */
.styled-card {
    background-color: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    padding: 2rem;
    box-shadow: var(--bs-shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.styled-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bs-shadow-lg);
}

.stat-card.styled-card {
    padding: 1.5rem;
    /* Smaller padding for stat cards */
}

/* --- Renamed Service Card --- */
.service-card {
    background-color: var(--bs-surface, var(--bs-body-bg));
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    padding: 2rem;
    box-shadow: var(--bs-shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bs-shadow-lg);
}
/* 
.benefit-card {
    background-color: var(--bs-surface, var(--bs-body-bg));
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    padding: 2rem;
    box-shadow: var(--bs-shadow);
    transition: all 0.3s ease;
    height: 100%;
} */
.benefit-card {
    background-color: var(--bs-surface, var(--bs-body-bg));
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    height: 100%;
    padding:3rem;
}

.benefit-badge {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bs-primary-subtle);
    color: var(--bs-primary-emphasis);
    padding: 0.45rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}





.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bs-shadow-lg);
}

.feature-card {
    background-color: var(--bs-surface, var(--bs-body-bg));
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    padding: 2rem;
    box-shadow: var(--bs-shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bs-shadow-lg);
}

.contact-form-card {
    background-color: var(--bs-surface, var(--bs-body-bg));
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    padding: 2rem;
    box-shadow: var(--bs-shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card {
    background-color: var(--bs-surface, var(--bs-body-bg));
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--bs-shadow);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

/* Consistent Icon Holder Styling */
.icon-holder {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-primary-dark));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--bs-primary-subtle);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-size: 1.75rem;
    flex-shrink: 0;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--bs-primary-subtle);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-size: 1.75rem;
    flex-shrink: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--bs-primary-subtle);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Card Overrides */
.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-header .service-icon {
    /* Re-using old class */
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-primary-dark));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 0;
    margin-right: 1.5rem;
    flex-shrink: 0;
    margin-bottom: 20px;
}

.service-header h4 {
    margin-bottom: 0;
}

/* .benefit-badge {
    background: var(--bs-primary-subtle);
    color: var(--bs-primary-emphasis);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
} */
 /* .benefit-badge {
     position: absolute;
     bottom: 0.8rem;

     left: 50%;
     transform: translateX(-50%);
     color: var(--bs-primary-emphasis);
     font-size: 0.8rem;
     font-weight: 600;
     display: inline-block;
     background: var(--bs-primary-subtle);
     padding: 0.5rem 1rem;
     border-radius: 2rem;
 } */

/* About Section */
.feature-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--bs-body-tertiary);
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    margin-bottom: 0.75rem;
}

.service-showcase-item {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-showcase-item i {
    font-size: 2rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

.service-showcase-item span {
    display: block;
    font-weight: 600;
}

.services-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 450px;
    margin: 0 auto;
}

/* Service/Feature Lists */
.service-features,
.feature-benefits {
    list-style: none;
    padding: 0;
    font-size: 0.95rem;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bs-border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

.feature-benefits {
    text-align: center;
}

.feature-benefits li {
    color: var(--bs-secondary-color);
    padding: 0.25rem 0;
}

.feature-benefits li::before {
    content: '•';
    color: var(--bs-primary);
    margin-right: 0.5rem;
    font-weight: 700;
}

/* Stats */
.success-stat {
    background: var(--bs-surface, var(--bs-body-bg));
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    padding: 2rem;
    box-shadow: var(--bs-shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.success-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--bs-shadow-lg);
}

.success-stat .stat-icon {
    width: 70px;
    height: 70px;
    background: var(--bs-primary-subtle);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-size: 1.75rem;
    flex-shrink: 0;
}

.success-stat .stat-number {
    font-size: 2rem;
}

/* Download Section */
.qr-code-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: var(--bs-surface);
    position: relative;
    padding: 1rem;
}

.qr-pattern {
    width: 150px;
    height: 150px;
    background-image:
        repeating-linear-gradient(0deg, var(--bs-primary) 0px, var(--bs-primary) 2px, transparent 2px, transparent 6px),
        repeating-linear-gradient(90deg, var(--bs-primary) 0px, var(--bs-primary) 2px, transparent 2px, transparent 6px);
    opacity: 0.3;
}

.download-features {
    padding: 1.5rem;
    background: var(--bs-body-tertiary);
    border-radius: var(--bs-border-radius-lg);
    margin-top: 1.5rem;
}

.download-features .d-flex {
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background-color: #0c0c0d;
    /* Dark footer for both themes */
    color: var(--bs-secondary-color);
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--bs-secondary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--bs-primary);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form .form-control {
    flex: 1;
    background-color: #2c2c2e;
    border-color: #3a3a3c;
    color: var(--bs-body-color);
}

.newsletter-form .form-control::placeholder {
    color: var(--bs-secondary-color);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #3a3a3c;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--bs-secondary-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: var(--bs-primary);
    color: #fff;
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .social-links {
        justify-content: flex-end;
    }
}

/* Modal Styling */
.modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

.modal-body h6 {
    color: var(--bs-primary);
    font-weight: 700;
    margin-top: 1.5rem;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes slowBounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: var(--bs-shadow);
    }

    50% {
        box-shadow: 0 8px 25px rgba(var(--bs-primary-rgb), 0.3);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-slow-bounce {
    animation: slowBounce 3s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
ONEZUP NAVBAR - GOLD THEME (MODE SAFE)
============================================ */

.custom-navbar {
    background-color: #1a1a1a !important;
    /* Always dark base */
    color: #fff !important;
    transition: background-color 0.3s ease, color 0.3s ease;
    z-index: 1030;
}

/* Brand */
.custom-navbar .navbar-brand {
    color: #fff !important;
}

.custom-navbar .text-gold {
    color: #d4af37 !important;
}

/* Links */
.custom-navbar .nav-link {
    color: #ddd !important;
    transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus,
.custom-navbar .nav-link.active {
    color: #d4af37 !important;
}

/* Buttons */
.btn-gold {
    background-color: #d4af37 !important;
    border-color: #d4af37 !important;
    color: #fff !important;
}

.btn-gold:hover {
    background-color: #b9972f !important;
    border-color: #b9972f !important;
    color: #fff !important;
}

.btn-outline-light {
    /* color: #fff !important; */
    border-color: #fff !important;
}

.btn-outline-light:hover {
    background-color: #fff !important;
    color: #000 !important;
}

/* Toggler */
.navbar-toggler {
    border: none !important;
    filter: invert(1) brightness(2);
    /* Makes toggler white */
}

.navbar-toggler-icon {
    background-image: var(--bs-navbar-toggler-icon-bg) !important;
}

/* Prevent light/dark mode influence */
[data-bs-theme="light"] .custom-navbar,
[data-bs-theme="dark"] .custom-navbar {
    background-color: #1a1a1a !important;
    color: #fff !important;
}

[data-bs-theme="light"] .btn-gold,
[data-bs-theme="dark"] .btn-gold {
    background-color: #d4af37 !important;
    color: #fff !important;
}

/* Policy Pages */
.policy-content {
    line-height: 1.7;
}

.policy-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--bs-primary);
}

.policy-content h5 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content ul,
.policy-content ol {
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content p {
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-map {
    height: 300px;
    background-color: var(--bs-body-tertiary);
    border-radius: var(--bs-border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.contact-info-section {
    margin-top: 3rem;
}