/* Estilo específico para Términos y Condiciones */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 10px;
}

.content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
}

.content-block {
    background-color: #f7f7f7; /* Fondo claro */
    padding: 20px;
    width: 60%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #333; /* Texto oscuro */
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
}

/* Responsivo */
@media (max-width: 768px) {
    .content-block {
        width: 90%;
    }
}
