/* Privacy Policy Page Styles */
.privacy-container {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding-top: 2rem;
}

/* Table of Contents */
.toc-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.toc-header {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-link {
    display: block;
    padding: 0.5rem 0;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
    padding-left: 10px;
}

.toc-link:hover,
.toc-link.active {
    color: #12163C;
    border-left: 2px solid #12163C;
    padding-left: 15px;
}

/* Main Content */
.privacy-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 0.5rem;
}

.privacy-updated {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

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

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

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.privacy-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.privacy-section p {
    color: #555;
    line-height: 1.7;
}

.privacy-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease;
}

.privacy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.privacy-list {
    padding-left: 1.2rem;
}

.privacy-list li {
    padding: 0.5rem 0;
    color: #555;
}

.contact-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-btn {
    margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .toc-container {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .privacy-content {
        padding: 1.5rem;
    }

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

    .privacy-section h2 {
        font-size: 1.5rem;
    }
}
