/* Privacy Policy Page Styles */

.last-updated {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: #64748b;
    font-size: 0.9rem;
}

.toc-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.toc-container h3 {
    color: #2c5282;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-of-contents {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
}

.table-of-contents li {
    background: white;
    border-radius: 6px;
    padding: 8px 12px;
    border-left: 4px solid #3182ce;
}

.table-of-contents a {
    color: #2c5282;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.table-of-contents a:hover {
    color: #3182ce;
}

.privacy-section {
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}

.privacy-section h2 {
    color: #2c5282;
    border-bottom: 3px solid #3182ce;
    padding-bottom: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-content {
    line-height: 1.7;
}

.section-content h3 {
    color: #2d3748;
    margin: 25px 0 15px 0;
    font-size: 1.2rem;
}

.section-content h4 {
    color: #4a5568;
    margin: 20px 0 10px 0;
    font-size: 1.1rem;
}

.section-content ul {
    padding-left: 25px;
    margin: 15px 0;
}

.section-content li {
    margin: 8px 0;
    line-height: 1.6;
}

.highlight-box, .legal-basis-box, .security-notice, .rights-exercise, .cookie-notice, .privacy-commitment {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #3182ce;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
}

.highlight-box h4, .legal-basis-box h4, .security-notice h4, .rights-exercise h4 {
    color: #2c5282;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.security-notice {
    background: #fef5e7;
    border-left-color: #ed8936;
}

.security-notice h4 {
    color: #c05621;
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.cookie-type {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

.cookie-type h4 {
    color: #2c5282;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.cookie-status.required {
    background: #fed7d7;
    color: #c53030;
}

.cookie-status.optional {
    background: #c6f6d5;
    color: #276749;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-card h4 {
    color: #2c5282;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.contact-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    color: #4a5568;
}

.contact-card i {
    color: #3182ce;
    width: 16px;
}

.privacy-commitment {
    background: linear-gradient(135deg, #e6fffa 0%, #c6f6d5 100%);
    border-left-color: #38a169;
    text-align: center;
}

.privacy-commitment h4 {
    color: #2f855a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .table-of-contents {
        grid-template-columns: 1fr;
    }
    
    .cookie-types, .contact-grid {
        grid-template-columns: 1fr;
    }
}