
.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 100px;
    padding: 60px 20px;
}

.privacy-content {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.privacy-title {
    color: #6B46C1;
    font-size: 2.8rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.intro-section {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05), rgba(139, 92, 246, 0.05));
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid #6B46C1;
}

.intro-section p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.privacy-section h2 {
    color: #6B46C1;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.privacy-section h3 {
    color: #4a5568;
    font-size: 1.3rem;
    margin: 30px 0 15px 0;
    font-weight: 500;
}

.privacy-section p {
    margin-bottom: 18px;
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.privacy-section li {
    margin-bottom: 12px;
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.6;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.03), rgba(139, 92, 246, 0.03));
    border: 1px solid rgba(107, 70, 193, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.highlight-box h3 {
    color: #6B46C1;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-section {
    background: linear-gradient(135deg, #6B46C1, #8B5CF6);
    color: white;
    padding: 35px;
    border-radius: 12px;
    margin-top: 40px;
}

.contact-section h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    text-decoration: underline;
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-section li {
    list-style: disc;
}

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

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

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

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

    .contact-section {
        padding: 25px;
    }

    .intro-section {
        padding: 20px;
    }
}