/* Policy content */
.policy {
    position: relative;
    z-index: 10;
    max-width: 780px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.policy-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.policy-date {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray-light);
    letter-spacing: 0.08em;
    margin-bottom: 3rem;
}

.policy h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.12em;
    color: var(--orange);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.policy h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    color: var(--orange-light);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.policy p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy ul {
    list-style: none;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.policy ul li {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray-light);
    line-height: 1.8;
    position: relative;
    padding-left: 1rem;
}

.policy ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange-dim);
}

.policy a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.3s;
}

.policy a:hover {
    color: var(--orange-light);
}

.policy-divider {
    border: none;
    height: 1px;
    background: rgba(255, 106, 0, 0.12);
    margin: 3rem 0;
}

/* Responsive */
@media (max-width: 640px) {
    .policy { padding: 2rem 1.5rem 3rem; }
}
