﻿.ap-privacy-container {
    margin-top: 78px;
    padding: 4rem 6rem;
    background-color: var(--white);
    color: var(--gray-950);
    font-family: 'Open Sans', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.ap-title-container {
    display: flex;
    flex-direction: column;
    justify-self: center;
    gap: 1rem;
    align-content: center;
    flex-wrap: wrap;
}

.ap-privacy-title {
    font-size: 36px;
    font-family: 'Bree Serif', serif;
    color: var(--gray-900);
    font-weight: 400;
    text-align: center;
    line-height: 130%;
}

.ap-privacy-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-800);
    text-align: justify;
}

.ap-privacy-subtitle {
    font-size: 24px;
    font-family: 'Bree Serif', serif;
    font-weight: 400;
    color: var(--gray-900);
}

.ap-privacy-paragraph {
    font-size: 16px;
    color: var(--gray-700);
    text-align: justify;
}

.ap-privacy-list {
    margin-left: 1.5rem;
    list-style-type: disc;
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.5;
}

/* === RESPONSIVE === */
@media screen and (max-width: 1440px) {
    .ap-privacy-container {
        padding: 3rem 4rem;
    }

    .ap-privacy-title {
        font-size: 32px;
    }

    .ap-privacy-subtitle {
        font-size: 22px;
    }

    .ap-privacy-paragraph,
    .ap-privacy-list {
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .ap-privacy-container {
        padding: 2rem 1.5rem;
    }

    .ap-privacy-title {
        font-size: 26px;
        text-align: left;
    }

    .ap-privacy-subtitle {
        font-size: 20px;
    }

    .ap-privacy-paragraph,
    .ap-privacy-list {
        font-size: 14px;
    }
}
