/* =========================
   PRIVACY, SECURITY & VERIFICATION
========================= */
.privacy-section {
    padding: 6rem 1.5rem;
    background-color: var(--white-color);
}

.privacy-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* Header */
.privacy-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.privacy-head h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 0.6rem;
}

.privacy-head p {
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Bullet points */
.privacy-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem 2rem;
    justify-content: center;
}

.privacy-bullet {
    flex: 1 1 220px;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background-color: var(--light-gray);
    padding: 1.4rem 1rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-bullet:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.privacy-icon {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.2;
}

.privacy-bullet p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

    .privacy-bullets {
        flex-direction: column;
        gap: 1.2rem;
    }

}