/* --- THEME STYLES (In case external CSS is not linked) --- */
:root {
    --primary-color: #077c8c;
    --primary-dark: #056674;
    --primary-light: #e0f2f1;
    --text-dark: #2c3e50;
    --text-gray: #555;
    --bg-light: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* --- HEADER SECTION FIX --- */
.policy-header {
    background: transparent;

    padding: 40px 0;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.policy-header h1 {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
   
}

/* --- WRAPPER GRADIENT STYLE --- */
.gradient-page {
    background: linear-gradient(to bottom, rgba(223, 237, 241, 0.8), rgba(255, 255, 255, 1));
    padding-top: 20px;
}


/* Sidebar */
.policy-sidebar {
    position: sticky;
    top: 20px;
    background: white;
    border: 1px solid #eef2f5;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.nav-link-custom {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: 0.3s;
    margin-bottom: 5px;
}

.nav-link-custom:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* Content Box */
.policy-content-box {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f5;
}

.policy-section {
    margin-bottom: 40px;
    scroll-margin-top: 40px;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.section-title i {
    color: var(--primary-color);
    background: var(--primary-light);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1rem;
}

.policy-text {
    line-height: 1.8;
    color: var(--text-gray);
    font-size: 0.98rem;
}

.policy-list {
    padding-left: 20px;
    margin-top: 10px;
}

.policy-list li {
    margin-bottom: 8px;
    color: var(--text-gray);
}

/* Contact Box */
.contact-support-box {
    background-color: var(--primary-light);
    border: 1px solid var(--primary-color);
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 991px) {
    .policy-content-box {
        padding: 25px;
    }

    .policy-header {
        padding: 50px 0;
    }

    .policy-nav {
        display: none;
    }
}