/* ---- SECCIÓN DE TÉRMINOS Y CONDICIONES ---- */
.terms-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 5rem 0;
}

.terms-section .container {
    width: 70.625rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.terms-section h1 {
    color: var(--blue-03);
    font-family: "DM Sans";
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.terms-section h2 {
    color: var(--blue-02);
    font-family: "DM Sans";
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
}

.terms-section p {
    color: var(--steel-blue);
    font-family: "DM Sans";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    text-align: justify;
    margin-bottom: 1rem;
}

@media screen and (min-width: 1920px) {
    .terms-section .container {
        width: 85rem; /* Se ajusta para mayor legibilidad */
        padding: 4rem;
        font-size: 1.125rem;
    }

    .terms-section h1 {
        font-size: 3rem;
    }

    .terms-section h2 {
        font-size: 2rem;
    }

    .terms-section p {
        font-size: 1.125rem;
        line-height: 1.8rem;
    }
}

@media screen and (max-width: 412px) {
    .terms-section {
        padding: 3rem 1rem; /* Más espacio arriba/abajo y menos en los lados */
    }

    .terms-section .container {
        width: 100%;
        padding: 2rem;
        border-radius: 1rem; /* Menos borde redondeado */
        box-shadow: none; /* Se elimina sombra para diseño más limpio */
    }

    .terms-section h1 {
        font-size: 2rem;
        text-align: center;
    }

    .terms-section h2 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }

    .terms-section p {
        font-size: 1rem;
        line-height: 1.5rem;
        text-align: left;
    }
}
