/* Privacy Policy Styles */

/* Hero Section */
.privacy-hero {
    background: linear-gradient(135deg, #00375c 0%, #0e1b2b 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.privacy-hero-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.privacy-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin: 0;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Content Section */
.privacy-content {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Table of Contents */
.privacy-toc {
    position: sticky;
    top: 100px;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.privacy-toc h3 {
    color: #00375c;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00375c;
}

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

.privacy-toc ul li {
    margin-bottom: 12px;
}

.privacy-toc ul li a {
    color: #0e1b2b;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
}

.privacy-toc ul li a:hover {
    background: #f0f7ff;
    color: #00375c;
    padding-left: 20px;
}

/* Main Content */
.privacy-main {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.privacy-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.privacy-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

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

.privacy-section h2 {
    color: #00375c;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #00375c;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00375c, #0e1b2b);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.privacy-section h3 {
    color: #0e1b2b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-section ul {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 25px;
}

.privacy-section ul li {
    margin-bottom: 10px;
}

/* Privacy Note Box */
.privacy-note {
    background: #f0f7ff;
    border-left: 4px solid #00375c;
    padding: 20px;
    margin: 25px 0;
    border-radius: 6px;
}

.privacy-note strong {
    color: #00375c;
}

/* Privacy Table */
.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.privacy-table thead {
    background: linear-gradient(135deg, #00375c, #0e1b2b);
    color: white;
}

.privacy-table thead th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.privacy-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background 0.3s ease;
}

.privacy-table tbody tr:hover {
    background: #f8f9fa;
}

.privacy-table tbody tr:last-child {
    border-bottom: none;
}

.privacy-table tbody td {
    padding: 18px 15px;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Contact Box */
.contact-box {
    background: linear-gradient(135deg, #f0f7ff, #e6f2ff);
    border: 2px solid #00375c;
    border-radius: 12px;
    padding: 30px;
    margin: 25px 0;
}

.contact-box h4 {
    color: #00375c;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-box p {
    margin-bottom: 12px;
    color: #333;
}

.contact-box a {
    color: #00375c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: #0e1b2b;
    text-decoration: underline;
}

/* Privacy Footer */
.privacy-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
    text-align: center;
}

.privacy-footer p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .privacy-toc {
        position: static;
        margin-bottom: 30px;
    }

    .privacy-main {
        padding: 30px 25px;
    }

    .privacy-hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 60px 0 40px;
    }

    .privacy-hero-title {
        font-size: 1.8rem;
    }

    .privacy-hero-subtitle {
        font-size: 1rem;
    }

    .privacy-main {
        padding: 25px 20px;
    }

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

    .section-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .privacy-table {
        font-size: 0.85rem;
    }

    .privacy-table thead th,
    .privacy-table tbody td {
        padding: 12px 10px;
    }

    .contact-box {
        padding: 20px;
    }
}

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

    .privacy-toc {
        padding: 20px;
    }

    .privacy-main {
        padding: 20px 15px;
    }

    .privacy-section h2 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .privacy-table {
        display: block;
        overflow-x: auto;
    }
}
