.container {
    width: 90%;
    max-width: 1200px;
    margin:20px auto;
    padding: 0 20px;
}

/* Header */
.terms-header {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.terms-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    font-style: italic;
    opacity: 0.9;
}

/* Contenedor principal */
.terms-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

/* Secciones */
.terms-section {
    margin-bottom: 2.5rem;
}

.terms-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--medium-gray);
}

.terms-section h3 {
    color: var(--dark-gray);
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
}

.terms-section p, 
.terms-section ul, 
.terms-section ol {
    margin-bottom: 1rem;
}

.terms-section ul, 
.terms-section ol {
    padding-left: 2rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
}

/* Enlaces */
a {
    color: var(--secondary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Aceptación */
.terms-acceptance {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-left: 4px solid var(--secondary-color);
    margin-top: 2rem;
    font-style: italic;
}

/* Footer */
.terms-footer {
    text-align: center;
    padding: 1.5rem 0;
    background-color: var(--primary-color);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-header h1 {
        font-size: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .terms-container {
        padding: 1.5rem;
    }
}