/* ===== POLICY PAGE STYLES ===== */

.policy-page {
    padding: 20px 0 40px;
    background: #f5f7fa;
    min-height: 60vh;
}

.policy-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 25px;
    align-items: start;
}

/* Sidebar */
.policy-sidebar-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 20px;
    margin-bottom: 20px;
}

.policy-sidebar-card h3 {
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
    display: flex;
    align-items: center;
    gap: 8px;
}

.policy-sidebar-card h3 i {
    color: #e74c3c;
}

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

.policy-nav li {
    margin-bottom: 2px;
}

.policy-nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #555;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s;
}

.policy-nav li a:hover {
    background: #fff5f5;
    color: #e74c3c;
}

.policy-nav li.active a {
    background: #e74c3c;
    color: #fff;
    font-weight: 500;
}

.policy-nav li a i {
    width: 20px;
    text-align: center;
    font-size: 15px;
}

/* CTA Card */
.policy-cta {
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
}

.policy-cta i {
    font-size: 40px;
    color: #e74c3c;
}

.policy-cta h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.policy-cta p {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.policy-cta-btn {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
}

.policy-cta-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Content */
.policy-content {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
}

.policy-content-header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    padding: 30px;
    text-align: center;
}

.policy-content-icon {
    width: 70px;
    height: 70px;
    background: rgba(231, 76, 60, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
    color: #e74c3c;
}

.policy-content-header h1 {
    font-size: 24px;
    margin-bottom: 8px;
}

.policy-updated {
    font-size: 13px;
    opacity: 0.7;
}

.policy-content-body {
    padding: 30px;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.policy-content-body h2 {
    font-size: 22px;
    color: #1a1a2e;
    margin: 25px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

.policy-content-body h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin: 20px 0 10px;
}

.policy-content-body p {
    margin-bottom: 12px;
}

.policy-content-body ul,
.policy-content-body ol {
    padding-left: 25px;
    margin-bottom: 15px;
}

.policy-content-body li {
    margin-bottom: 8px;
}

.policy-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.policy-content-body table th,
.policy-content-body table td {
    border: 1px solid #e0e0e0;
    padding: 10px 15px;
    text-align: left;
}

.policy-content-body table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a2e;
}

.policy-content-body strong {
    color: #1a1a2e;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-layout {
        grid-template-columns: 1fr;
    }

    .policy-sidebar {
        order: 2;
    }

    .policy-content {
        order: 1;
    }

    .policy-content-header {
        padding: 20px;
    }

    .policy-content-header h1 {
        font-size: 20px;
    }

    .policy-content-body {
        padding: 20px;
    }
}
