/* Estilos para páginas estáticas (Misión, Equipo, etc.) */
.static-page {
    padding: 60px 0;
    background-color: #f9f9f9;
    min-height: 60vh;
}

.static-page .container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.static-page .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.static-content p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.static-content ul {
    list-style-position: inside;
    padding-left: 20px;
    margin-bottom: 1.5rem;
}