/* Privacy Policy Page Styles */

.privacy-container {
    padding: 3rem 0;
    line-height: 1.8;
    color: #333;
}

.privacy-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.last-updated {
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-style: italic;
}

.toc-container {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.toc-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.toc-links {
    list-style-type: none;
    padding-left: 0;
}

.toc-links li {
    margin-bottom: 0.5rem;
}

.toc-links a {
    color: #3498db;
    text-decoration: none;
}

.toc-links a:hover {
    text-decoration: underline;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.policy-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.policy-section p {
    margin-bottom: 1.5rem;
}

.policy-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.cookie-settings {
    margin-top: 1.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.cookie-option {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.cookie-option input {
    margin-right: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .privacy-container h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .modal-content {
        margin: 20% auto;
        width: 95%;
    }
}