header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.date-info {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-top: 5px;
}

.policy-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    line-height: 1.5;
}

.section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

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

.policy-content h3 {
    font-size: 1.375rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--secondary-color);
}

.policy-content h4 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin: 20px 0 12px 0;
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.policy-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.policy-content a:hover {
    text-decoration: underline;
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-info {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
}

.contact-info p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.375rem;
    }
    h2 {
        font-size: 1.25rem;
    }
    h3 {
        font-size: 1.125rem;
    }
    .policy-content {
        padding: 20px;
    }
}