/* Privacy Policy Page Styles */

.privacy-main {
    padding-top: 100px;
    padding-bottom: 80px;
    background: var(--bg-light);
    min-height: 100vh;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.privacy-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-align: center;
}

.privacy-date {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(16, 185, 129, 0.1);
}

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

.privacy-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-color);
}

.privacy-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 16px;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.privacy-section ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.privacy-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.privacy-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.privacy-section ul li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info {
    background: #F0FDF4;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-top: 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-info p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.privacy-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid rgba(16, 185, 129, 0.1);
    text-align: center;
}

.privacy-footer p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-main {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .privacy-content {
        padding: 40px 30px;
        border-radius: 16px;
    }

    .privacy-title {
        font-size: 36px;
    }

    .privacy-date {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .privacy-section {
        margin-bottom: 40px;
    }

    .privacy-section h2 {
        font-size: 24px;
    }

    .privacy-section h3 {
        font-size: 20px;
    }

    .privacy-section p,
    .privacy-section ul li {
        font-size: 15px;
    }

    .contact-info {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .privacy-main {
        padding-top: 70px;
        padding-bottom: 50px;
    }

    .privacy-content {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .privacy-title {
        font-size: 28px;
    }

    .privacy-date {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .privacy-section {
        margin-bottom: 30px;
    }

    .privacy-section h2 {
        font-size: 22px;
    }

    .privacy-section h3 {
        font-size: 18px;
    }

    .privacy-section p,
    .privacy-section ul li {
        font-size: 14px;
    }

    .privacy-section ul li {
        padding-left: 24px;
    }

    .contact-info {
        padding: 20px 16px;
    }

    .contact-info p {
        font-size: 14px;
    }
}
