/* Privacy Policy page specific styles */

/* Policy section */
.policy-section {
    padding: 5rem 0;
}

.policy-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.policy-header {
    margin-bottom: 3rem;
    text-align: center;
}

.policy-header h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.last-updated {
    color: #777;
    font-style: italic;
}

.policy-content h3 {
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.policy-content h4 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.policy-content p {
    margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.3s;
}

.policy-content a:hover {
    color: var(--primary-color);
}

.policy-content .highlighted {
    background-color: rgba(255, 209, 0, 0.2);
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.policy-content .contact-info {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-content .contact-item {
    margin-bottom: 0.8rem;
}

.policy-content .contact-label {
    font-weight: bold;
    color: var(--secondary-color);
}

.table-of-contents {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.table-of-contents h3 {
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 1rem;
    border-bottom: none;
    padding-bottom: 0;
}

.table-of-contents ol {
    padding-left: 1.5rem;
}

.table-of-contents a {
    text-decoration: none;
}

.table-of-contents a:hover {
    text-decoration: underline;
}

/* Contact section */
.contact-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-content p {
    margin-bottom: 2rem;
}

/* Media queries */
@media (max-width: 768px) {
    .policy-container {
        padding: 2rem;
    }

    .policy-header h2 {
        font-size: 2rem;
    }

    .policy-content h3 {
        font-size: 1.5rem;
    }

    .policy-content h4 {
        font-size: 1.2rem;
    }
}
