:root {
    --primary-color: #3b82f6;
    --secondary-color: #1e293b;
    --accent-color: #10b981;
    --light-bg: #f8fafc;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--secondary-color);
    background-color: #fff;
    line-height: 1.6;
    padding-top: 80px;
}

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: #0f172a;
}

.nav-link {
    font-weight: 600;
    color: #475569 !important;
    font-size: 0.95rem;
    margin: 0 10px;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Styling */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.info-box {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
}

.policy-list {
    list-style: none;
    padding-left: 0;
}

.policy-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--secondary-color);
}

.policy-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

table.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

table.data-table td, table.data-table th {
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    text-align: left;
}

table.data-table th {
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--secondary-color);
}

table.data-table tr:nth-child(even) {
    background-color: #f8fafc;
}

/* Footer */
footer {
    background-color: #0f172a;
    color: #94a3b8;
    margin-top: 60px;
    padding: 50px 0 30px;
}

footer a {
    color: #cbd5e1;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top:hover {
    transform: translateY(-3px);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    table.data-table {
        display: block;
        overflow-x: auto;
    }
}

}
