/* ===== PRIVACY POLICY PAGE STYLES ===== */

/* Main Container */
.privacy-page {
    background: #ffffff;
    min-height: 100vh;
    padding: 120px 0 80px;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.privacy-hero {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.privacy-main-title {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #325D53;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.privacy-updated {
    font-family: 'Prompt', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

/* Content Container */
.privacy-content {
    background: #ffffff;
}

/* Introduction */
.privacy-intro {
    font-family: 'Prompt', 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 16px;
    border-left: 4px solid #325D53;
}

.privacy-intro p {
    margin: 0 0 15px 0;
}

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

/* Sections */
.privacy-sections {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.privacy-section {
    position: relative;
    padding: 0;
}

.privacy-section-title {
    font-family: 'Prompt', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #325D53;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1.4;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #325D53 0%, #285446 100%);
    color: #ffffff;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.privacy-section-content {
    font-family: 'Prompt', 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    padding-left: 65px;
}

.privacy-section-content p {
    margin: 0 0 20px 0;
}

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

.privacy-section-content strong {
    color: #325D53;
    font-weight: 600;
}

/* Lists */
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
}

.privacy-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-family: 'Prompt', 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

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

.privacy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #325D53;
    border-radius: 50%;
}

/* Contact Section */
.privacy-contact {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 2px solid #e0e0e0;
}

.privacy-contact-title {
    font-family: 'Prompt', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #325D53;
    margin: 0 0 20px 0;
    text-align: center;
}

.privacy-contact-content {
    font-family: 'Prompt', 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    text-align: center;
}

.privacy-contact-content p {
    margin: 0 0 15px 0;
}

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

.privacy-contact-email,
.privacy-contact-phone {
    font-family: 'Prompt', 'Inter', sans-serif;
    font-size: 16px;
    color: #444;
    margin: 10px 0;
    text-align: center;
}

.privacy-contact-email a,
.privacy-contact-phone a {
    color: #325D53;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.privacy-contact-email a:hover,
.privacy-contact-phone a:hover {
    color: #285446;
    border-bottom-color: #285446;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .privacy-page {
        padding: 100px 0 60px;
    }

    .privacy-container {
        padding: 0 30px;
    }

    .privacy-main-title {
        font-size: 48px;
    }

    .privacy-section-title {
        font-size: 26px;
    }

    .privacy-intro {
        font-size: 17px;
        padding: 25px;
    }
}

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

    .privacy-container {
        padding: 0 20px;
    }

    .privacy-hero {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .privacy-main-title {
        font-size: 38px;
    }

    .privacy-updated {
        font-size: 15px;
    }

    .privacy-intro {
        font-size: 16px;
        padding: 20px;
        margin-bottom: 40px;
    }

    .privacy-sections {
        gap: 40px;
    }

    .privacy-section-title {
        font-size: 24px;
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .section-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .privacy-section-content {
        font-size: 15px;
        padding-left: 0;
        margin-top: 20px;
    }

    .privacy-list li {
        font-size: 15px;
        padding-left: 25px;
    }

    .privacy-contact {
        margin-top: 40px;
        padding: 30px 25px;
    }

    .privacy-contact-title {
        font-size: 24px;
    }

    .privacy-contact-content {
        font-size: 15px;
    }

    .privacy-contact-email,
    .privacy-contact-phone {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .privacy-page {
        padding: 60px 0 30px;
    }

    .privacy-container {
        padding: 0 15px;
    }

    .privacy-hero {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .privacy-main-title {
        font-size: 32px;
    }

    .privacy-updated {
        font-size: 14px;
    }

    .privacy-intro {
        font-size: 15px;
        padding: 18px;
        margin-bottom: 30px;
    }

    .privacy-sections {
        gap: 35px;
    }

    .privacy-section-title {
        font-size: 22px;
        gap: 10px;
    }

    .section-number {
        width: 42px;
        height: 42px;
        font-size: 17px;
        border-radius: 10px;
    }

    .privacy-section-content {
        font-size: 14px;
        line-height: 1.8;
        margin-top: 15px;
    }

    .privacy-list {
        margin-top: 20px;
    }

    .privacy-list li {
        font-size: 14px;
        padding-left: 22px;
        margin-bottom: 12px;
    }

    .privacy-list li::before {
        width: 6px;
        height: 6px;
        top: 8px;
    }

    .privacy-contact {
        margin-top: 30px;
        padding: 25px 20px;
        border-radius: 16px;
    }

    .privacy-contact-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .privacy-contact-content {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .privacy-contact-email,
    .privacy-contact-phone {
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .privacy-page {
        padding: 0;
    }

    .privacy-hero {
        page-break-after: avoid;
    }

    .privacy-section {
        page-break-inside: avoid;
    }

    .privacy-contact {
        page-break-before: avoid;
    }

    .section-number {
        background: #325D53 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}