/* Privacy Policy Page Styles */

.privacy-page {
    padding: 80px 0;
    background: #ffffff;
}

.privacy-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
}

/* Table of Contents */
.privacy-toc {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
}

.toc-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.toc-column {
    display: flex;
    flex-direction: column;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 12px;
}

.toc-list a {
    color: #0066cc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
}

.toc-list a:hover {
    color: #0052a3;
    text-decoration: underline;
}

/* Privacy Content */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid #0066cc;
}

.subsection-title {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin: 32px 0 16px;
}

.section-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

.section-content p {
    margin-bottom: 20px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* Lists */
.info-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.info-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.info-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 20px;
}

/* Warning and Info Boxes */
.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 24px 0;
    border-radius: 8px;
}

.warning-box strong {
    color: #856404;
    display: block;
    margin-bottom: 8px;
}

.warning-box p {
    margin: 0;
    color: #856404;
}

.info-box {
    background: #e7f3ff;
    border-left: 4px solid #0066cc;
    padding: 20px;
    margin: 24px 0;
    border-radius: 8px;
}

.info-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #004085;
    margin-bottom: 12px;
}

.info-box p {
    margin: 0 0 12px 0;
    color: #004085;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.info-box ul {
    margin: 12px 0;
    padding-left: 20px;
    color: #004085;
}

.info-box ul li {
    margin-bottom: 8px;
}

/* Contact Box */
.contact-box {
    background: #f8f9fa;
    border: 2px solid #0066cc;
    border-radius: 8px;
    padding: 20px;
    margin: 24px 0;
    text-align: center;
}

.contact-box p {
    margin: 0;
    font-size: 16px;
    color: #333333;
}

.contact-box a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* Footer */
.privacy-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.last-updated {
    font-size: 14px;
    color: #666666;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .toc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .privacy-page {
        padding: 60px 0;
    }

    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .toc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .privacy-toc {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .subsection-title {
        font-size: 20px;
    }

    .warning-box,
    .info-box,
    .contact-box {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .privacy-page {
        padding: 40px 0;
    }

    .page-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .subsection-title {
        font-size: 18px;
    }

    .section-content {
        font-size: 15px;
    }

    .toc-list a {
        font-size: 14px;
    }
}
