/* =============== Privacy Section =============== */
.privacy-section {
    margin-top: 60px;
}

.privacy-intro {
    font-size: 18px;
    font-weight: 600;
    color: #6F6F6F;
    line-height: 1.8;
    margin-bottom: 24px;
    text-align: justify;
}

.privacy-block {
    margin-bottom: 4rem;
}

.privacy-block h3 {
    font-size: 28px;
    font-weight: 600;
    color: #3E5EC0;
    margin-bottom: 8px;
}

.privacy-block p {
    font-size: 18px;
    font-weight: 600;
    color: #6F6F6F;
    line-height: 1.8;
    margin-bottom: 24px;
    text-align: justify;
}

.privacy-block p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.privacy-list li {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6F6F6F;
}

.note {
    font-weight: 700;
}

.customer-email {
    font-size: 1.25rem;
    font-weight: 700;
    color: #6F6F6F;
    display: block;
    margin-bottom: 1rem;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .privacy-section {
        margin-top: 3rem;
    }

    .privacy-intro,
    .privacy-block p,
    .privacy-list li {
        font-size: 1rem;
        line-height: 1.75;
    }

    .privacy-block h3 {
        font-size: 1.875rem;
        margin-bottom: 1.5rem;
    }

    .customer-email {
        font-size: 1rem;
    }
}