/* Estilos generales de la sección */
.about-us {
    display: flex;
    justify-content: space-around;
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

/* Estilos de cada columna */
.column {
    width: 30%; /* Ancho de cada columna */
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.column:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Estilos del ícono */
.icon {
    font-size: 2.5rem;
    color: var(--black); /* Color del ícono */
    margin-bottom: 20px;
}

.icon:hover {
    font-size: 2.5rem;
    color: var(--yellow); /* Color del ícono */
    margin-bottom: 20px;
}

/* Estilos del título */
.column h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

/* Estilos del texto */
.column p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsividad */
@media (max-width: 768px) {
    .about-us {
        flex-direction: column;
        align-items: center;
    }

    .column {
        width: 80%;
        margin-bottom: 20px;
    }

    .column:last-child {
        margin-bottom: 0;
    }
}