/* =============================================
   Refonte Text Pages (Legals, Privacy)
   ============================================= */

.refonte-text-page {
    padding: 120px 40px 100px;
    background: #F4F7F6;
    display: flex;
    justify-content: center;
    font-family: var(--font-primary);
    color: #1A1A1A;
}

.text-page-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.page-title {
    font-size: 56px;
    font-weight: 500;
    line-height: 1.1;
    color: #003329;
    margin: 0;
    text-align: center;
}

.intro-text {
    font-size: 18px;
    line-height: 1.6;
    color: #475467;
    margin: 0;
}

.text-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.text-block h2 {
    font-size: 28px;
    font-weight: 500;
    color: #003329;
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #E2E8E6;
}

.text-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #475467;
    margin: 0;
}

.text-block .small-title {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin-top: 16px;
}

.text-block ul {
    margin: 0;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.text-block ul li {
    font-size: 16px;
    line-height: 1.5;
    color: #475467;
    position: relative;
    list-style-type: disc;
}

.text-block .redirect-link {
    color: #003329;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.text-block .redirect-link:hover {
    color: #BECE88;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
    .refonte-text-page {
        padding: 100px 32px 80px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 40px;
    }

    .text-block h2 {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .refonte-text-page {
        padding: 80px 16px 60px;
    }

    .page-title {
        font-size: 32px;
        text-align: left;
    }

    .text-block h2 {
        font-size: 20px;
    }

    .intro-text,
    .text-block p,
    .text-block ul li {
        font-size: 15px;
    }
}