@import url('index.css');

.policy-section {
    padding: 100px 0 80px;
    background: var(--light);
}

.page-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 900;
    font-family: 'Merriweather', serif;
}

.policy-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Merriweather', serif;
    border-bottom: 2px solid var(--light);
    padding-bottom: 0.5rem;
}

.policy-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-content li {
    color: var(--gray);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.policy-content strong {
    color: var(--dark);
}

.contact-info {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

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

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light);
    text-align: center;
}

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

    .page-title {
        font-size: 2rem;
    }

    .policy-content {
        padding: 2rem 1.5rem;
    }
}

