.policies-section {
    padding: 60px 0;
}

.policy-category {
    margin-bottom: 50px;
}

.policy-category h2 {
    color: #2B8EFE;
    margin-bottom: 30px;
    font-size: 28px;
    border-bottom: 2px solid #2B8EFE;
    padding-bottom: 15px;
}

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

.policy-list li {
    margin-bottom: 15px;
}

.policy-list a {
    display: block;
    padding: 15px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.policy-list a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(43, 142, 254, 0.3);
    color: #2B8EFE;
}

.policy-list a i {
    margin-right: 10px;
    color: #2B8EFE;
}

/* Dark mode */
html.theme-dark .policies-section,
body.theme-dark .policies-section {
    background: var(--dark-surface);
}

html.theme-dark .policy-category h2,
body.theme-dark .policy-category h2 {
    color: var(--accent-light-blue);
    border-color: var(--accent-light-blue);
}

html.theme-dark .policy-list a,
body.theme-dark .policy-list a {
    background: linear-gradient(145deg, rgba(10, 17, 30, 0.98), rgba(13, 22, 38, 0.96));
    border: 1px solid rgba(67, 186, 255, 0.14);
    color: var(--dark-text);
    box-shadow:
        0 6px 22px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(10, 141, 255, 0.12);
}

html.theme-dark .policy-list a:hover,
body.theme-dark .policy-list a:hover {
    color: var(--accent-light-blue);
    background: linear-gradient(145deg, rgba(14, 25, 44, 0.98), rgba(10, 17, 30, 0.96));
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(67, 186, 255, 0.35),
        0 10px 30px rgba(67, 186, 255, 0.18);
}

html.theme-dark .policy-list a i,
body.theme-dark .policy-list a i {
    color: var(--accent-light-blue);
}
