/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Contenedor principal */
.terms-container {
    max-width: 900px;
    background: #fff;
    padding: 30px;
    margin: 30px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Títulos */
.terms-container h1 {
    font-size: 28px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

.terms-container h2 {
    font-size: 22px;
    color: #2980b9;
    margin-top: 25px;
    border-bottom: 2px solid #2980b9;
    padding-bottom: 5px;
}

/* Párrafos */
.terms-container p {
    font-size: 16px;
    text-align: justify;
}

/* Listas */
.terms-container ul {
    padding-left: 20px;
}

.terms-container li {
    font-size: 16px;
    margin-bottom: 8px;
}

/* Enlaces */
.terms-container a {
    color: #e74c3c;
    text-decoration: none;
}

.terms-container a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-container {
        width: 90%;
        padding: 20px;
    }

    .terms-container h1 {
        font-size: 24px;
    }

    .terms-container h2 {
        font-size: 20px;
    }

    .terms-container p, 
    .terms-container li {
        font-size: 14px;
    }
}
