/* Estilos frescos y ligeros para términos y condiciones */

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 40px;
}

h2, h3 {
    color: #2c3e50;
    margin-bottom: 16px;
}

h2 {
    font-size: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-top: 24px;
}

p, li {
    margin-bottom: 12px;
}

ul {
    padding-left: 20px;
}

a {
    color: #1e90ff;
    text-decoration: none;
    transition: color 0.3s;
}

/* Centrar el botón */
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

/* Espaciado adicional */
.mt-5 {
    margin-top: 40px;
}

.mb-4 {
    margin-bottom: 32px;
}

.text-center {
    text-align: center;
}

/* Adaptabilidad */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .button {
        width: 100%;
    }
}