/* Estilos específicos para la página de Quiénes Somos detallada */
.about-detail-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.about-detail-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.about-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-logo-container .logo {
    height: 60px;
}

.about-logo-container .logo-text h1 {
    font-size: 1.2rem;
    margin: 0;
    color:#ec7b3a;
}

.about-logo-container .logo-text p {
    font-size: 0.9rem;
    margin: 5px 0 0;
    color: #ec7b3a;
}

.about-back-btn {
    background-color: #ec7b3a;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.about-back-btn:hover {
    background-color: #2980b9;
}

.about-detail-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 20px;
}

.about-detail {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.about-detail h1 {
    color: #ec7b3a;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid #3498db;
    padding-bottom: 1rem;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    color: #ec7b3a;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: justify;
}

.values-list {
    list-style-type: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.policies-list {
    list-style-type: none;
    padding: 0;
}

.policies-list li {
    margin-bottom: 1rem;
}

.policies-list a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.policies-list a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.policies-list i {
    color: #e74c3c;
    margin-right: 10px;
}

.about-detail-footer {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .about-header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .about-logo-container {
        flex-direction: column;
    }
    
    .about-detail h1 {
        font-size: 2rem;
    }
    
    .about-section h2 {
        font-size: 1.5rem;
    }
}