:root {
    --bs-body-bg: #ffffff;
    --bs-body-color: #494B5B;
    --bs-primary: #000000;
    --bs-primary-hover: #144B4B;
    --bs-secondary: #ffffff;
    --bs-heading-color: #020913;
    --inverse-color: #494B5B;

    /* Advanced UI helpers */
    --radius: 20px;
    --shadow-soft: 0 10px 25px rgba(0,0,0,0.08);
    --shadow-medium: 0 20px 50px rgba(0,0,0,0.15);
    --transition: 0.3s ease;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Inter', sans-serif;
    background: var(--bs-body-bg);
    color: var(--bs-body-color);
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
}

/* Subtle reflective background effect */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(230,230,230,0.4));
    z-index: 0;
    pointer-events: none;
}

/* Header */
.header {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    opacity: 0.7;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 6px 10px rgba(0,0,0,0.06);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
}

.logo {
    height: 90px;
    transition: transform .4s ease, opacity .4s ease;
}
.logo:hover {
    opacity: 0.85;
    transform: scale(1.06);
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

/* Card */
.policy-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}
.policy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

/* Top accent */
.policy-card::before {
    content: '';
    position: absolute;
    inset: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-primary-hover));
    border-radius: 20px 20px 0 0;
}

/* Header */
.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.policy-title {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: var(--bs-heading-color);
}
.policy-title:hover{
    color:#ffae00da;
}
.section-title:hover{
    color:#ffae00da;
}

.policy-meta {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--inverse-color);
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    gap: .5rem;
    align-items: center;
    font-weight: 500;
}

.meta-label {
    font-weight: 600;
    color: var(--bs-primary);
}

/* Sections */
.section {
    margin-bottom: 3rem;
}

.section-title {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 600;
    gap: .9rem;
    color: var(--bs-heading-color);
}
.section-title::before {
    content: "";
    width: 5px;
    height: 1.6rem;
    border-radius: 4px;
    background: var(--bs-primary);
}

/* Content */
.section-content {
    margin-top: 1rem;
    line-height: 1.75;
    font-size: 1rem;
}

/* List */
.section-list {
    list-style: none;
    margin: 1.2rem 0;
    padding: 0;
}

.section-list li {
    position: relative;
    padding: 0.9rem 0.9rem 0.9rem 2.2rem;
    background: rgba(0,0,0,0.02);
    border-radius: 12px;
    margin-bottom: .7rem;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.section-list li::before {
    content: "✓";
    position: absolute;
    left: .8rem;
    font-weight: 700;
    color: var(--bs-primary);
}

.section-list li:hover {
    border-left-color: var(--bs-primary);
    background: rgba(0,0,0,0.04);
}

/* Notes */
.note {
    background: rgba(0,0,0,0.04);
    border-left: 4px solid var(--bs-primary);
    padding: 1.2rem 1.6rem;
    font-style: italic;
    border-radius: 10px;
    margin: 1.2rem 0;
}

/* Contact */
.contact-box {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-primary-hover));
    padding: 2.2rem;
    border-radius: 18px;
    color: #fff;
    text-align: center;
    box-shadow: var(--shadow-soft);
    margin-top: 3rem;
    transition: var(--transition);
}

.contact-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    transition-duration: 1s;
    color:#ffae00da;
}

.contact-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-box a {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: opacity var(--transition);
}
.contact-box a:hover {
    opacity: .75;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-card {
        padding: 2rem 1.7rem;
    }
    .policy-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .policy-meta {
        gap: .7rem;
        flex-direction: column;
    }
}
