/*
 * Filename: privacy.css
 * File path: css/privacy.css
 * Privacy Policy page styles
 */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

.privacy-page {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    line-height: 1.7;
    padding: 100px 20px 80px;
    background: #f9fafb;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
    text-align: center;
}

.effective-date {
    text-align: center;
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e7eb;
}

.privacy-intro {
    background: #f3f4f6;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid #6366f1;
}

.privacy-intro p {
    margin: 0 0 12px;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

.privacy-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid #e5e7eb;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px;
    padding-left: 16px;
    position: relative;
}

.privacy-section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #6366f1;
    border-radius: 2px;
}

.privacy-section h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #374151;
    margin: 24px 0 12px;
}

.privacy-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #4b5563;
    margin: 20px 0 10px;
}

.privacy-section p {
    margin: 0 0 14px;
    color: #374151;
}

.privacy-section ul {
    margin: 0 0 16px;
    padding-left: 24px;
}

.privacy-section li {
    margin-bottom: 8px;
    color: #374151;
}

.privacy-section strong {
    color: #111827;
}

.contact-section {
    background: #f9fafb;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.contact-section h2 {
    padding-left: 0;
    text-align: center;
}

.contact-section h2::before {
    display: none;
}

.contact-section a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-section a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .privacy-page {
        padding: 80px 12px 60px;
    }

    .privacy-container {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .privacy-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .privacy-section h2 {
        font-size: 1.1rem;
        padding-left: 14px;
        margin: 24px 0 12px;
    }

    .privacy-section h2::before {
        height: 16px;
        width: 3px;
    }

    .privacy-section h3 {
        font-size: 1rem;
        margin: 16px 0 8px;
    }

    .privacy-section p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0 0 12px;
    }

    .privacy-section ul {
        padding-left: 20px;
        margin: 0 0 12px;
    }

    .privacy-section li {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .privacy-intro {
        padding: 16px;
        margin-bottom: 24px;
    }

    .effective-date {
        font-size: 0.85rem;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .contact-section {
        padding: 16px;
    }

    .contact-section a {
        font-size: 1rem;
        word-break: break-all;
    }
}
