/* Policy Page Styles - Consistent with theme */

#policy-content {
    background: #fff;
}

#policy-content .sections {
    text-align: left;
}

#policy-content .section-heading span {
    color: var(--color-primary);
}

#policy-content .section-subheading span {
    color: #3c3d3d;
}

.policy-updated {
    color: #7a7a7a;
    font-size: 13px;
}

.policy-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 24px 10px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.policy-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #3c3d3d;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-section p {
    margin-bottom: 12px;
    padding-bottom: 0;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 8px 0;
}

.policy-section ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
}

.policy-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
}

.policy-section a { color: var(--color-primary); }
.policy-section a:hover { color: #b30015; }

/* Subtle divider spacing reuse from index.php */
.inner-divider,
.inner-divider-half,
.inner-divider-ultra-half { display:block; height: 10px; }

/* Responsive */
@media (max-width: 768px) {
    .policy-section { padding: 18px 18px 8px; }
    .policy-section h3 { font-size: 18px; }
}

