/* Privacy Policy Page Styles */

.privacy-content-section {
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* Table of Contents */
.toc-wrapper {
    padding: 24px 0;
}

.toc-title {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: #6c757d;
}

.toc-nav {
    display: flex;
    flex-direction: column;
}

.toc-link {
    display: block;
    padding: 8px 16px;
    margin-bottom: 2px;
    font-size: 0.875rem;
    color: #4a5568;
    text-decoration: none;
    border-left: 3px solid transparent;
    border-radius: 0 6px 6px 0;
    transition: all 0.2s ease;
}

.toc-link:hover {
    color: #FF6900;
    background-color: #ff6a001b;
    border-left-color: #FF6900;
}

.toc-link.active {
    color: #FF6900;
    background-color: #ff6a001b;
    border-left-color: #FF6900;
    font-weight: 600;
}

/* Privacy Body Content */
.privacy-body {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 48px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.privacy-body h2 {
    font-size: 1.5rem;
    color: #1a202c;
}

.privacy-body h5 {
    font-size: 1.1rem;
    color: #1a202c;
}

.privacy-body p {
    color: #4a5568;
    line-height: 1.7;
}

.privacy-body ul {
    color: #4a5568;
    line-height: 1.9;
}

.privacy-body ul li {
    margin-bottom: 4px;
}

.privacy-body hr {
    border-color: #e2e8f0;
    opacity: 0.6;
}

/* Company Info Card */
.company-info-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.7;
}

.company-info-card i {
    font-size: 1rem;
}

.company-info-card a {
    text-decoration: none;
}

.company-info-card a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991.98px) {
    .toc-wrapper {
        position: relative !important;
        top: 0 !important;
        margin-bottom: 24px;
        padding: 20px;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    }

    .privacy-body {
        padding: 24px 20px;
    }
}

/* Hero Section Responsive */
@media (max-width: 767.98px) {
    #hero-section .hero-container {
        padding-top: 5.5rem;
        padding-bottom: 2rem;
    }

    #hero-section .display-2 {
        font-size: 2rem;
    }

    #hero-section .w-75 {
        width: 100% !important;
    }

    #hero-section .w-75 p {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    #hero-section .display-2 {
        font-size: 2.75rem;
    }

    #hero-section .w-75 {
        width: 90% !important;
    }
}
