.privacy-policy-container {
    max-width: 800px;
    margin: 80px auto 0 auto;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    font-family: "Bai Jamjuree", sans-serif;
}

.privacy-header h1 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--color-primary) 20%, var(--color-secondary) 70%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: "Bai Jamjuree", sans-serif;
}

.last-updated {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

.privacy-content {
    margin-top: 30px;
}

.privacy-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #5C3BFF;
}

.privacy-section h2 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-section p {
    margin-bottom: 15px;
    text-align: justify;
}

.privacy-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

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

.contact-info {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info a {
    text-decoration: none;
}


@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 20px 15px;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-section {
        padding: 15px;
    }
}