@import url("./style.css");

.header-privacy {
    background-color: var(--color-white);
    width: 100%;
    justify-content: space-between;
    padding: 0;
}

/* ============================================
          PRIVACY POLICY SECTION
============================================ */
.privacy-policy {
    width: 100%;
    background-color: var(--color-white);
    padding: 4rem 0;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 4rem;
}

.privacy-policy h1 {
    font-family: var(--font-dongle);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.privacy-content {
    font-family: var(--font-lato);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray);
}

.privacy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
}

.privacy-content h2 {
    font-family: var(--font-dongle);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-black);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-green);
}

.privacy-content ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style-type: disc;
}

.privacy-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-content a {
    color: var(--color-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: var(--color-green);
    text-decoration: underline;
}

.privacy-content .update-date {
    margin-top: 3rem;
    font-style: italic;
    text-align: right;
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* ============================================
          RESPONSIVE
============================================ */
@media (max-width: 768px) {
    .privacy-container {
        padding: 1.5rem 1.5rem;
    }

    .privacy-policy h1 {
        font-size: 2.5rem;
    }

    .privacy-content h2 {
        font-size: 1.6rem;
    }

    .privacy-content {
        font-size: 0.95rem;
    }

    .privacy-content ul {
        margin-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 1rem 1rem;
    }

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

    .privacy-content h2 {
        font-size: 1.4rem;
    }

    .privacy-content p {
        text-align: left;
    }
}
