/* Estilos para la página de términos y condiciones */

.terms-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: var(--border-radius-md);
    padding: 2rem;
    overflow-y: auto;
    max-height: 90vh;
}

.terms-title {
    color: var(--primary-color);
    font-size: 3.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.terms-content {
    font-family: Arial, sans-serif;
    color: var(--text-color);
}

.terms-section {
    margin-bottom: 2rem;
}

.terms-section h2 {
    font-family: 'Tungsten Bold', sans-serif;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.terms-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.5rem;
}

.terms-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 1.3rem;
}

.terms-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-section a:hover {
    color: var(--primary-hover-color);
    text-decoration: underline;
}

/* Estilos para el botón de volver */
.back-button {
    font-size: 2.5rem !important;
    margin-bottom: 1rem;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .terms-container {
        margin: 1rem;
        padding: 1.5rem;
        max-height: 80vh;
    }
    
    .terms-title {
        font-size: 2.5rem;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .terms-container {
        padding: 1rem;
    }
    
    .terms-title {
        font-size: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.2rem;
    }
    
    .terms-section p,
    .terms-section li {
        font-size: 0.9rem;
    }
}