/* Privacy Policy Page Styles */
.privacy-content {
    background: #f8f9fa;
}

.privacy-document {
    line-height: 1.6;
}

.privacy-section {
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.privacy-section:last-child {
    border-bottom: none;
}

.toc .nav-link {
    color: #007bff;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.toc .nav-link:hover {
    color: #0056b3;
    background-color: #f8f9fa;
    padding-left: 1rem;
}

.contact-info, .contact-card {
    border: 2px solid #e9ecef;
    background: #f8f9fa;
}

.rights-card {
    transition: all 0.3s ease;
    background: #fff;
}

.rights-card:hover {
    border-color: #007bff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,123,255,0.1);
}

.accordion-button {
    background-color: #f8f9fa;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: #e7f3ff;
    color: #0056b3;
}

.hero-badge .badge {
    font-size: 0.9rem;
    font-weight: 500;
}

.icon-circle-lg {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.privacy-document h2 {
    color: #2c3e50;
    margin-top: 2rem;
}

.privacy-document h5 {
    color: #34495e;
    margin-top: 1.5rem;
}

.privacy-document ul {
    margin-left: 1rem;
}

.privacy-document li {
    margin-bottom: 0.5rem;
    color: #555;
}

.table th {
    background-color: #f8f9fa;
    color: #495057;
    font-weight: 600;
}

.alert-info {
    border-left: 4px solid #17a2b8;
}

.alert-light {
    border-left: 4px solid #6c757d;
}

@media (max-width: 768px) {
    .privacy-document {
        padding: 2rem !important;
    }
    
    .hero-badge .badge {
        font-size: 0.8rem;
    }
    
    .rights-card {
        margin-bottom: 1rem;
    }
}

/* Smooth scroll behavior for anchor links */
html {
    scroll-behavior: smooth;
}

/* Highlight target section when navigated to via anchor link */
.privacy-section:target {
    background-color: #fff3cd;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: -1rem;
    animation: highlight 2s ease-in-out;
}

@keyframes highlight {
    0% { background-color: #fff3cd; }
    100% { background-color: transparent; }
}
