/* Privacy Policy Styles - Same as Legal Pages */

/* Main Content */
.page-container {
    padding-top: 100px;
    min-height: 100vh;
}

.legal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

/* Table of Contents */
.toc-sidebar {
    position: sticky;
    top: 140px;
    height: calc(100vh - 160px);
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.toc-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 2px solid var(--light-gray);
    flex-shrink: 0;
}

.toc-nav {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.toc-nav::-webkit-scrollbar {
    width: 6px;
}

.toc-nav::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 3px;
}

.toc-nav::-webkit-scrollbar-thumb {
    background: var(--english-red);
    border-radius: 3px;
}

.toc-nav::-webkit-scrollbar-thumb:hover {
    background: #8B4340;
}
.nav-logo {
    text-decoration: none !important;
}
.toc-list {
    list-style: none;
    padding: 0 2rem 1rem 2rem;
}

.toc-item {
    margin-bottom: 0.75rem;
}

.toc-link {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    display: block;
    transition: all 0.3s ease;
}

.toc-link:hover,
.toc-link.active {
    background: var(--english-red);
    color: white;
    transform: translateX(5px);
}

/* Content Area */
.content-area {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-height: 80vh;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.header-logo span {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 2.5rem;
}

.company-info {
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.company-info a {
    color: var(--english-red);
    text-decoration: none;
}

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

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    font-size: 1rem;
}

/* Content Sections */
.content-section {
    margin-bottom: 4rem;
    scroll-margin-top: 140px; /* Account for fixed navbar */
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    border-left: 4px solid var(--english-red);
    padding-left: 1.5rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.content-section p:last-child {
    margin-bottom: 0;
}

.content-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    position: relative;
}

.content-list li::marker {
    color: var(--english-red);
}

.content-link {
    color: var(--english-red);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.content-link:hover {
    border-bottom-color: var(--english-red);
}

/* Disclaimer Text Styling */
.disclaimer-text {
    background: var(--beige);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--english-red);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Enhanced Visual Elements */
.content-section:nth-child(odd) {
    position: relative;
}

.content-section:nth-child(odd)::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--english-red), transparent);
    opacity: 0.3;
}

/* Hover Effects */
.content-section {
    transition: all 0.3s ease;
    padding: 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 15px;
}

.content-section:hover {
    background: var(--beige);
    box-shadow: 0 4px 15px rgba(160, 82, 79, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .legal-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }
    
    .toc-sidebar {
        position: static;
        order: 2;
        margin-top: 2rem;
        height: auto;
        max-height: 50vh;
    }
    
    .toc-nav {
        max-height: 40vh;
    }
    
    .content-area {
        order: 1;
        padding: 2rem;
    }
    
    .page-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        padding-left: 1rem;
        border-left-width: 3px;
    }
    
    .content-section {
        margin-bottom: 2rem;
        padding: 1rem;
        margin-left: -1rem;
        margin-right: -1rem;
    }
    
    .content-section:nth-child(odd)::before {
        display: none;
    }
    
    .toc-title {
        text-align: center;
        font-size: 1.2rem;
        padding: 1.5rem;
    }
    
    .toc-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.5rem;
        padding: 0 1rem 1rem 1rem;
    }
    
    .toc-link {
        text-align: center;
        font-size: 0.85rem;
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .content-section p,
    .content-list li {
        font-size: 1rem;
    }
    
    .toc-list {
        grid-template-columns: 1fr;
    }
    
    .header-logo {
        font-size: 1.5rem;
    }
    
    .header-logo span {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .toc-sidebar,
    .footer {
        display: none;
    }
    
    .legal-container {
        grid-template-columns: 1fr;
        max-width: none;
        padding: 0;
    }
    
    .content-area {
        box-shadow: none;
        padding: 0;
    }
    
    .page-container {
        padding-top: 0;
    }
    
    .content-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .section-title {
        page-break-after: avoid;
    }
}
