/* Estilos para la página de términos y condiciones */
.terms-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.terms-header{
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.terms-header h1 {
    color: navy;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.terms-header p {
    color: navy;
    font-size: 1.1rem;
}

.terms-content {
    background-color: #fcfcfc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.terms-section {
    margin-bottom: .5rem;
    padding: 1rem;
    border-radius: 8px;
}

.terms-section h2 {
    /* color: #2c3e50; */
    color: navy;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
    font-weight: 600;
}

.terms-section p {
    /* color: #444; */
    color: navy;
    line-height: 1.5;
    font-size: 1rem;
}

.terms-section ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.terms-section li {
    /* color: #444; */
    color: navy;
    line-height: 1.5;
    margin-bottom: .5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.terms-section li:before {
    content: "•";
    /* color: #3498db; */
    color: navy;
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.highlight {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #3498db;
}

.highlight p {
    margin-bottom: 1rem;
}

.terms-section strong {
    /* color: #2c3e50; */
    color: navy;
    font-weight: 600;
}

.terms-section a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-section a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Estilo para los términos resaltados */
.highlight-text {
    color: #1a237e; /* Azul marino */
    font-weight: 600;
    text-transform: uppercase;
}

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {
    .terms-container {
        margin: 1rem auto;
    }

    .terms-content {
        padding: 1rem;
    }

    .terms-header h1 {
        font-size: 2rem;
    }

    .terms-section {
        padding: 1rem;
    }

    .terms-section h2 {
        font-size: 1.3rem;
    }

    .terms-section p,
    .terms-section li {
        font-size: 1rem;
    }
}

/* Estilos para mejorar la accesibilidad */
.terms-section:focus-within {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

.terms-section h2:focus {
    outline: none;
}

/* Estilos para mejorar la legibilidad */
.terms-section {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.terms-section p,
.terms-section li {
    text-align: justify;
}