@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0A66C2;
    --primary-dark: #004182;
    --primary-light: #378fe9;
    --secondary: #F59E0B;
    --accent: #10B981;
    --bg-light: #F8FAFC;
    --bg-navy: #0f1129;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Fluid Typography */
    --fs-h1: clamp(2.5rem, 6vw + 1rem, 4.5rem);
    --fs-h2: clamp(2rem, 4vw + 1rem, 3.5rem);
    --fs-lead: clamp(1.125rem, 1.5vw + 0.5rem, 1.5rem);
    --fs-body: clamp(0.9rem, 0.5vw + 0.5rem, 1.1rem);
}

[data-bs-theme="dark"] {
    --bg-light: var(--bg-navy);
    --text-dark: #F8FAFC;
    --text-muted: #94A3B8;
    --white: #1a1c3d;
    --glass-bg: rgba(15, 17, 41, 0.8);
    --glass-border: rgba(255, 255, 255, 0.05);
}

[data-bs-theme="dark"] .bg-white {
    background-color: var(--white) !important;
}

/* Typography Overhaul */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Glassmorphism Enhancement */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

/* Admin Sidebar Layout */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: var(--white);
    border-right: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.sidebar.collapsed {
    width: 85px;
}

.sidebar-header {
    padding: 25px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.sidebar-brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.sidebar.collapsed .sidebar-brand-text {
    opacity: 0;
    pointer-events: none;
}

.sidebar-nav {
    padding: 20px 15px;
    flex: 1;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: var(--transition);
    font-weight: 500;
    white-space: nowrap;
}

.sidebar-link i {
    width: 24px;
    font-size: 1.2rem;
    margin-right: 15px;
    text-align: center;
}

.sidebar-link:hover {
    background: rgba(10, 102, 194, 0.08);
    color: var(--primary);
}

.sidebar-link.active {
    background: var(--primary);
    color: white !important;
}

.sidebar-link.active i {
    color: white !important;
}

/* Nav Pills Active State */
.nav-pills .nav-link.active, 
.nav-pills .show > .nav-link {
    color: white !important;
    background-color: var(--primary) !important;
}

.nav-pills .nav-link.active i {
    color: white !important;
}

.sidebar.collapsed .sidebar-link span {
    display: none;
}

.main-content {
    flex: 1;
    min-width: 0;
    padding: 40px;
    background: #f8fafc;
}

@media (max-width: 991px) {
    .sidebar {
        position: fixed;
        left: -280px;
    }
    .sidebar.mobile-open {
        left: 0;
    }
    .main-content {
        padding: 20px;
    }
}

/* Border-less Table Design */
.table-modern {
    border-collapse: separate;
    border-spacing: 0 8px;
}

.table-modern thead th {
    background: transparent;
    border: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding: 15px 20px;
}

.table-modern tbody tr {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.table-modern tbody tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.table-modern tbody td {
    padding: 18px 20px;
    border: none;
}

.table-modern tbody td:first-child { border-radius: 15px 0 0 15px; }
.table-modern tbody td:last-child { border-radius: 0 15px 15px 0; }

.table-modern tbody tr:nth-child(even) {
    background-color: rgba(10, 102, 194, 0.03);
}

.text-primary {
    color: #0A66C2 !important;
}

/* Primary Button Overrides */
.bg-premium-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: white !important;
    box-shadow: 0 8px 15px rgba(10, 102, 194, 0.3) !important;
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

/* Custom Gradients */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
}

.btn-premium {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    box-shadow: 0 10px 20px -5px rgba(10, 102, 194, 0.4);
    position: relative;
    z-index: 1;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    border-radius: inherit;
}

.btn-premium:hover::before { opacity: 1; }
.btn-premium:hover { transform: translateY(-3px) scale(1.02); color: white; }

/* Container Optimization for Ultra-Wide */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
}

/* Top Header Styles */
.top-header {
    background: var(--primary);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
}
.top-header a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}
.top-header a:hover {
    opacity: 0.8;
}
.top-header .social-links a {
    margin-left: 15px;
    font-size: 1rem;
}
@media (max-width: 768px) {
    .top-header .contact-info { display: none; }
    .top-header { text-align: center; }
    .top-header .social-links { width: 100%; justify-content: center; }
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    width: 0%;
    z-index: 9999;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Loading Animation */
#loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-light);
    display: flex; justify-content: center; align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}
.spinner {
    width: 50px; height: 50px;
    border: 5px solid rgba(10, 102, 194, 0.1);
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Navbar Enhancement */
.navbar {
    transition: var(--transition);
    padding: 5px 0;
    background: transparent;
}
.navbar.scrolled {
    padding: 5px 0;
    background: var(--glass-bg) !important;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md);
}
.navbar-brand {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    letter-spacing: -0.5px;
}
.nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    color: var(--text-dark) !important;
    padding: 10px 15px; /* Better touch target */
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 15px; width: 0; height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 30px); }

/* Mobile Navbar */
@media (max-width: 991px) {
    .navbar {
        background: var(--white) !important;
        padding: 10px 0;
        box-shadow: var(--shadow-sm);
    }
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        box-shadow: var(--shadow-lg);
    }
    .nav-link { margin: 5px 0; }
}

/* ── Typing Master Button ───────────────────────────────────────── */
.btn-typing-master {
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: #fff !important;
    background: linear-gradient(135deg, #0ea5e9 0%, #0A66C2 55%, #4f46e5 100%);
    box-shadow: 0 4px 20px -4px rgba(14, 165, 233, 0.55),
                0 0 0 0 rgba(14, 165, 233, 0);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    cursor: pointer;
    z-index: 1;
}

/* Animated shimmer sweep */
.btn-typing-master::after {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.btn-typing-master:hover::after {
    left: 130%;
}

/* Glow ring pulse */
.btn-typing-master:hover {
    transform: translateY(-3px) scale(1.04);
    color: #fff !important;
    box-shadow: 0 8px 28px -4px rgba(14, 165, 233, 0.65),
                0 0 0 6px rgba(14, 165, 233, 0.12);
}

/* Pulsing bolt badge */
.typing-master-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    margin-left: 8px;
    font-size: 0.65rem;
    animation: typing-badge-pulse 2.2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes typing-badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); transform: scale(1); }
    50%       { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);  transform: scale(1.1); }
}

/* Mobile: full width pill */
@media (max-width: 991px) {
    .btn-typing-master {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 8px 0 4px;
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 14px;
    }
}

/* Hero Section */
.hero {
    padding: clamp(100px, 15vh, 180px) 0 clamp(60px, 10vh, 120px);
    background: radial-gradient(circle at top right, rgba(10, 102, 194, 0.1), transparent),
                radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.05), transparent);
    position: relative;
    overflow: hidden;
}
.hero-shapes .shape {
    position: absolute;
    z-index: -1;
    filter: blur(40px);
    opacity: 0.4;
    animation: float 10s infinite alternate ease-in-out;
}
.shape-1 { width: clamp(150px, 20vw, 300px); height: clamp(150px, 20vw, 300px); background: var(--primary); top: -50px; right: -50px; }
.shape-2 { width: clamp(100px, 15vw, 200px); height: clamp(100px, 15vw, 200px); background: var(--secondary); bottom: 50px; left: -50px; }
@keyframes float { 0% { transform: translate(0,0); } 100% { transform: translate(30px, 30px); } }

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px !important;
    }
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: clamp(20px, 4vw, 40px);
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn-premium {
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    min-height: 48px; /* Touch accessibility */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-primary-premium {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 20px -5px rgba(10, 102, 194, 0.4);
}
.btn-primary-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(10, 102, 194, 0.5);
    color: white;
}
.btn-secondary-premium {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-secondary-premium:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Cards Enhancement */
.premium-card {
    background: var(--white);
    border: none;
    border-radius: 24px;
    padding: clamp(20px, 3vw, 30px);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.premium-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}
.premium-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}
.premium-card:hover::before { opacity: 0.03; }

.icon-badge {
    width: 70px; height: 70px;
    background: rgba(10, 102, 194, 0.1);
    color: var(--primary);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: var(--transition);
}
.premium-card:hover .icon-badge {
    background: var(--primary);
    color: white;
    transform: rotateY(360deg);
}

/* Course Section Extra */
.course-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--secondary);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Section Separator */
.separator {
    width: 100%;
    line-height: 0;
    fill: var(--bg-light);
}

/* Statistics */
.stat-box {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border-bottom: 5px solid var(--primary);
    transition: var(--transition);
}
.stat-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}
.stat-number {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Floating Buttons */
.floating-btns {
    position: fixed;
    bottom: 20px; right: 20px;
    display: flex; flex-direction: column;
    gap: 10px;
    z-index: 999;
}
.float-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-decoration: none;
}
@media (min-width: 768px) {
    .floating-btns { bottom: 30px; right: 30px; gap: 15px; }
    .float-btn { width: 60px; height: 60px; font-size: 1.5rem; }
}
.float-btn:hover { transform: scale(1.1); color: white; }
.float-whatsapp { background: #25D366; }
.float-call { background: var(--primary); }
.back-to-top { background: var(--text-dark); display: none; }

/* Form Controls */
.form-premium .form-group { position: relative; margin-bottom: 20px; }
.form-premium .form-control {
    background: rgba(10, 102, 194, 0.03);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 12px 15px 12px 50px;
    transition: var(--transition);
    font-size: var(--fs-body);
}
.form-premium .form-control:focus {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 10px 20px -10px rgba(10, 102, 194, 0.2);
}
.form-premium i {
    position: absolute;
    left: 20px; top: 15px;
    color: var(--text-muted);
    transition: var(--transition);
}
.form-premium .form-control:focus + i { color: var(--primary); }

/* Dark Mode Toggle */
.theme-toggle {
    width: 44px; height: 44px; /* Min touch target */
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    margin-left: 15px;
}

/* Theme Specific Logos */
.logo-dark { display: none; }
[data-bs-theme="dark"] .logo-light { display: none; }
[data-bs-theme="dark"] .logo-dark { display: block; }

/* Image Responsiveness */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero Contact Card Enhanced (Matching Features Bar Style) */
.hero-contact-card-wrapper {
    background: #001B3D; /* Extra Deep Navy */
    border: 2px solid #C5A021; /* Rich Gold */
    border-radius: 24px;
    padding: 25px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}
.hero-contact-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
    text-decoration: none;
    color: white !important;
    transition: var(--transition);
    display: block;
}
.hero-contact-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    border-right: 1px dashed rgba(255, 255, 255, 0.4);
}
.hero-contact-item:hover {
    transform: translateY(-5px);
    opacity: 0.9;
}
.contact-icon-box {
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: block;
    color: #FFFFFF;
    width: auto;
    height: auto;
    background: transparent !important;
}

/* Hero Stats Enhanced */
.hero-stats-grid {
    margin-top: 3rem;
}
.hero-stat-item {
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}
.hero-stat-item:hover {
    background: var(--white);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}
.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
    display: block;
}
.hero-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Custom Hero Features Bar (Based on Image) */
.hero-features-bar {
    background: #001B3D; /* Extra Deep Navy */
    border: 2px solid #C5A021; /* Rich Gold */
    border-radius: 24px;
    padding: 25px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    margin-top: 2rem;
}
.hero-feature-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
}
.hero-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    border-right: 1px dashed rgba(255, 255, 255, 0.4);
}
.hero-feature-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
    color: #FFFFFF;
}
.hero-feature-text {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}
@media (max-width: 768px) {
    .hero-features-bar { flex-wrap: wrap; padding: 20px 10px; }
    .hero-feature-item { flex: 0 0 50%; margin-bottom: 20px; }
    .hero-feature-item:nth-child(2)::after { display: none; }
    .hero-feature-item:nth-child(even)::after { display: none; }
}

/* Advanced Upload UI */
.upload-container {
    position: relative;
    border: 2px dashed rgba(65, 70, 224, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    background: rgba(65, 70, 224, 0.02);
    cursor: pointer;
    overflow: hidden;
}

.upload-container:hover, .upload-container.dragover {
    border-color: var(--primary);
    background: rgba(65, 70, 224, 0.05);
}

.upload-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    opacity: 0.7;
}

.preview-container {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: none;
}

.preview-container.active {
    display: block;
}

.preview-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.upload-progress-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(0,0,0,0.05);
    display: none;
}

.upload-progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.1s ease;
}

.file-input-hidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Adjustments for different screens */
@media (max-width: 768px) {
    .hero-contact-card-wrapper { flex-wrap: wrap; padding: 20px 10px; }
    .hero-contact-item { flex: 0 0 50%; margin-bottom: 10px; }
    .hero-contact-item:nth-child(even)::after { display: none; }
}
@media (max-width: 576px) {
    .hero-contact-item { flex: 0 0 100%; }
    .hero-contact-item::after { display: none !important; }
    .hero-stats-grid .col-4 { width: 100%; }
}

/* Policy Pages Content Styling */
.policy-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.policy-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.policy-content strong {
    color: var(--primary);
}

