/* ==========================================================================
   GLOBAL VARIABLES & CONFIGURATIONS FROM BASE CSS
   ========================================================================== */
:root {
    --primary: #030712;
    --primary-light: #0b1528;
    --secondary: #2563eb;
    --secondary-gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --accent: #60a5fa;
    --gold: #f59e0b;
    --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --text-dark: #111827;
    --text-light: #4b5563;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --font-family: 'Plus Jakarta Sans', sans-serif;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(37, 99, 235, 0.1);
    --shadow-lg: 0 20px 50px -12px rgba(37, 99, 235, 0.15);
    --radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-center { text-align: center; }
.text-blue { color: var(--secondary) !important; }

/* RE-ENGINEERED BUTTONS WITH GLOW */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}
.btn-primary { background: var(--secondary-gradient); color: var(--bg-white); }
.btn-glow:hover { box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4); transform: translateY(-2px); }

/* NAVBAR SYSTEM LINKED FROM HOME */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(243, 244, 246, 0.6);
    padding: 14px 0;
    transition: all 0.3s ease;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); letter-spacing: -0.03em; }
.nav-links { display: flex; align-items: center; gap: 30px; font-weight: 600; font-size: 0.95rem; }
.nav-links a { color: var(--text-light); position: relative; padding: 6px 0; }
.nav-links a:hover { color: var(--secondary); }
.nav-actions { display: flex; align-items: center; gap: 28px; }

/* Dropdown logic */
.dropdown { position: relative; }
.dropdown > a { display: flex; align-items: center; gap: 6px; }
.dropdown-menu {
    position: absolute; top: 120%; left: 0; min-width: 220px; background: #fff;
    border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,.12); padding: 10px 0;
    opacity: 0; visibility: hidden; transform: translateY(10px); transition: .3s ease; z-index: 999;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 12px 20px; color: #333; transition: .3s; white-space: nowrap; }
.dropdown-menu a:hover { background: #f5f5f5; color: #0d6efd; padding-left: 28px; }
.dropdown:hover .fa-chevron-down { transform: rotate(180deg); transition: .3s; }

.sub-title {
    font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
    color: var(--secondary); background: rgba(37, 99, 235, 0.08); padding: 6px 14px;
    border-radius: 30px; display: inline-block; margin-bottom: 16px;
}

/* ==========================================================================
   PRIVACY POLICY UNIQUE CONTENT INTERFACE
   ========================================================================== */
.policy-hero {
    padding: 80px 0 40px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid #f1f5f9;
}
.policy-hero h1 {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}
.last-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.policy-wrapper {
    padding: 60px 0 100px 0;
    background-color: #ffffff;
}
.policy-container {
    display: grid;
    grid-template-columns: 0.8fr 2.2fr;
    gap: 50px;
    align-items: flex-start;
}

/* Sidebar Styling */
.policy-sidebar {
    position: sticky;
    top: 120px;
}
.sidebar-box {
    background-color: var(--bg-light);
    padding: 30px 24px;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
}
.sidebar-box h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}
.sidebar-link {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    transition: all 0.2s ease;
}
.sidebar-link:hover, .sidebar-link.active {
    color: var(--secondary);
    transform: translateX(4px);
}

/* Main Text Layouts */
.policy-content {
    color: var(--text-light);
}
.content-block {
    margin-bottom: 50px;
}
.content-block h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 18px;
}
.content-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.content-block ul {
    margin-bottom: 20px;
    padding-left: 20px;
}
.content-block li {
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 24px;
    border-radius: 12px;
    margin-top: 20px;
}
.contact-card p {
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
}

/* ==========================================================================
   FOOTER SECTION MATCHED FROM THE HOME BASE
   ========================================================================== */
.footer { background-color: #020617; color: #94a3b8; padding: 100px 0 0 0; font-size: 0.95rem; }
.footer-container { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 64px; margin-bottom: 80px; }
.light-logo { color: white; margin-bottom: 24px; font-size: 1.5rem; }
.footer-col-main p { margin-bottom: 24px; line-height: 1.7; font-size: 0.9rem; }

.social-icons { display: flex; gap: 12px; }
.social-icons a { width: 40px; height: 40px; background-color: rgba(255,255,255,0.03); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; border: 1px solid rgba(255,255,255,0.05); }
.social-icons a:hover { background: var(--secondary-gradient); border-color: transparent; transform: translateY(-3px); }

.footer-col h4 { color: white; margin-bottom: 24px; font-size: 1.05rem; font-weight: 700; }
.footer-col a { display: block; margin-bottom: 12px; color: #94a3b8; font-size: 0.9rem; }
.footer-col a:hover { color: white; transform: translateX(3px); }
.footer-col p { margin-bottom: 14px; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 32px 0; }
.footer-bottom-container { display: flex; justify-content: space-between; font-size: 0.85rem; color: #64748b; }
.footer-bottom-links a { margin-left: 24px; text-decoration: none; color: inherit; }
.footer-bottom-links a:hover { color: white; }

/* RESPONSIVE MEDIA BREAKPOINTS */
@media (max-width: 1024px) {
    .policy-container { grid-template-columns: 1fr; gap: 40px; }
    .policy-sidebar { position: relative; top: 0; }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .policy-hero h1 { font-size: 2.4rem; }
    .footer-container { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}