.policy-page {
    padding: 140px 0 80px;
    max-width: 800px;
    margin: 0 auto;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-date {
    display: inline-block;
    font-size: 13px;
    color: var(--text-light);
    background: var(--light);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.policy-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.policy-header p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.policy-content {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: 16px;
    padding: 50px;
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray);
}

.policy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.policy-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}

.policy-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.policy-section li {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-details {
    margin-top: 16px;
    padding: 20px;
    background: var(--light);
    border-radius: 8px;
}

.contact-details p {
    margin-bottom: 0;
}

.contact-details a {
    color: var(--primary);
}

.contact-details a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-page {
        padding: 120px 0 60px;
    }

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

    .policy-content {
        padding: 30px 24px;
    }
}