
        /* Estilos específicos para esta página si son necesarios */
        .about-section {
            padding: 5em 0;
            background-color: #f8f8f8;
            text-align: center;
        }

        .about-section.alt {
            background-color: #fff;
        }

        .about-section .inner {
            max-width: 960px; /* Ajusta el ancho del contenido */
            margin: 0 auto;
        }

        .about-section header.special h2 {
            font-size: 2.8em;
            color: #960000;
            margin-bottom: 0.5em;
        }

        .about-section header.special p {
            font-size: 1.2em;
            color: #555;
            line-height: 1.6;
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 3em;
            margin-top: 3em;
            text-align: left;
        }

        .about-content .image {
            flex: 1 1 400px; /* Permite que la imagen crezca o se encoja */
            max-width: 500px;
        }

        .about-content .image img {
            width: 100%;
            border-radius: 1em;
            box-shadow: 0 0.5em 1em rgba(0,0,0,0.1);
        }

        .about-content .text {
            flex: 1 1 400px;
            max-width: 500px;
        }

        .about-content .text h3 {
            font-size: 2em;
            color: #333;
            margin-bottom: 0.8em;
        }

        .about-content .text p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 1em;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2em;
            margin-top: 3em;
        }

        .value-item {
            background-color: white;
            padding: 2em;
            border-radius: 1em;
            box-shadow: 0 0.3em 0.7em rgba(0,0,0,0.08);
            text-align: center;
        }

        .value-item h4 {
            color: #960000;
            font-size: 1.5em;
            margin-bottom: 0.8em;
        }

        .value-item p {
            color: #666;
            line-height: 1.6;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2em;
            margin-top: 3em;
        }

        .team-member {
            text-align: center;
            background-color: white;
            padding: 1.5em;
            border-radius: 1em;
            box-shadow: 0 0.3em 0.7em rgba(0,0,0,0.08);
        }

        .team-member img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1em;
            border: 3px solid #960000;
        }

        .team-member h4 {
            margin-bottom: 0.3em;
            color: #333;
        }

        .team-member p {
            color: #777;
            font-size: 0.95em;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .about-content {
                flex-direction: column;
                text-align: center;
            }
            .about-content .text,
            .about-content .image {
                max-width: 100%;
            }
        }
        .pilar-section {
            text-align: left;
            padding: 50px 20px;
            background-color: #f9f9f9;
          }
        
          .pilar-section h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: #333;
          }
        
          .pilares {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
          }
        
          .pilar {
            background: #fff;
            border-radius: 10px;
            padding: 20px;
            width: 383px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
          }
        
          .pilar:hover {
            transform: translateY(-10px);
          }
        
          .pilar i {
            font-size: 3em;
            color: #960000;
            margin-bottom: 15px;
          }
        
          .pilar h3 {
            font-size: 1.5em;
            margin-bottom: 10px;
            color: #333;
          }
        
          .pilar p {
            font-size: 1em;
            color: #666;
          }
          /* Ajustes responsivos */
@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-content .text,
    .about-content .image {
        max-width: 100%;
    }

    .about-section header.special h2 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3em 1em;
    }

    .about-section header.special h2 {
        font-size: 2em;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-section header.special h2 {
        font-size: 1.8em;
    }

    .about-section header.special p {
        font-size: 1em;
    }

    .about-content .text h3 {
        font-size: 1.5em;
    }

    .about-content .text p {
        font-size: 0.9em;
    }
    .pilar p {
        width: auto !important;
    text-align: left !important;
    }
    .pilar {
        width: auto !important;
    }
    
   
}
.pilar h3 {
        text-align: center !important;
        margin-bottom: 2rem;
    }
 .pilar i {
        display: block;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 2rem;
    }