/* --- Terms & Privacy Page Specific Styling --- */
:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #f8fafc;
    --white: #ffffff;
    --dark: #0f172a;
    --border: #e2e8f0;
    --font: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font);
    background-color: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Nav */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.logo a { font-size: 1.4rem; font-weight: 800; color: var(--dark); text-decoration: none; }
.logo .dot { color: var(--primary); }

.nav-list { display: flex; gap: 2rem; list-style: none; }
.nav-list a { color: var(--text); font-weight: 500; text-decoration: none; transition: 0.3s; position: relative; }
.nav-list a:hover, .nav-list a.active { color: var(--primary); }

.menu-toggle { display: none; background: none; border: none; font-size: 1.8rem; cursor: pointer; }

html {
  scroll-behavior: smooth;
}

/* Main Container */
.policy-container {
    max-width: 850px;
    margin: 60px auto;
    padding: 0 25px;
    font-family: 'Inter', sans-serif;
    color: #334155; /* Slate-700 */
}

/* Typography */
.policy-container h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a; /* Slate-900 */
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.policy-container p em {
    color: #64748b; /* Slate-500 */
    font-style: normal;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-container h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 50px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Add a small blue accent to H2s */
.policy-container h2::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 24px;
    background: #3b82f6; /* Your brand blue */
    border-radius: 4px;
}

/* The "Privacy Guarantee" Box */
.highlight-box {
    background: #f0fdf4; /* Emerald-50 */
    border: 1px solid #bbf7d0; /* Emerald-200 */
    border-left: 5px solid #22c55e; /* Emerald-500 */
    padding: 25px;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.highlight-box strong {
    color: #166534; /* Emerald-800 */
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

/* Lists */
.policy-container ul {
    list-style: none;
    padding: 0;
}

.policy-container li {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.policy-container li:hover {
    border-color: #3b82f6;
    background: #f8fafc;
}

.policy-container li strong {
    color: #3b82f6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-container h1 {
        font-size: 2rem;
    }
    
    .policy-container {
        margin: 40px auto;
    }
}

/* Footer */
.main-footer { background: var(--dark); color: var(--white); padding: 40px 5%; text-align: center; }
.footer-link { color: var(--primary); text-decoration: none; font-weight: 600; display: block; margin-bottom: 10px; }
.social-links { display: flex; justify-content: center; gap: 15px; margin-top: 20px; }
.social-links a { color: white; border: 1px solid rgba(255,255,255,0.2); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.social-links a:hover { background: var(--primary); border-color: var(--primary); }

/* Mobile */
@media (max-width: 850px) {
    .menu-toggle { display: block; }
    .main-nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: white; border-bottom: 1px solid var(--border); }
    .main-nav.open { display: block; }
    .nav-list { flex-direction: column; padding: 20px; gap: 10px; }
    .form-group { flex-direction: column; }
}