.hero-section-columns {
    background: linear-gradient(to bottom, #c597e8, #4a148c); 
    color: #fff; 
    padding: 40px 20px;
    font-family: 'Open Sans', sans-serif; 
}

.hero-container-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center; 
    gap: 40px;
    background-color: transparent;
}

.hero-left-column {
    flex: 1;
    padding: 20px;
    text-align: left;
}

.hero-left-column h1 {
    font-size: 2.8em;
    color: #fff; /* Texto blanco para contrastar */
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-left-column .hero-subtitle {
    font-size: 1.6em;
    color: #eee; /* Texto ligeramente más claro */
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-left-column .hero-description {
    font-size: 1.1em;
    color: #ddd; /* Texto aún más claro */
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-right-column {
    flex: 1;
    padding: 20px;
    text-align: right;
}

.hero-right-column .contact-info-columns {
    background-color: rgba(255, 255, 255, 0.1); /* Fondo blanco ligeramente transparente */
    color: #fff;
    padding: 25px;
    border-radius: 5px;
    display: inline-block; /* Para que el fondo se ajuste al contenido */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Borde sutil */
}

.hero-right-column .contact-info-columns h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
    color: #fff;
}

.hero-right-column .contact-info-columns p {
    font-size: 1em;
    margin-bottom: 10px;
}

.hero-right-column .contact-info-columns a {
    color: #add8e6; /* Color azul claro para los enlaces */
    text-decoration: none;
    font-weight: 500;
}

.hero-right-column .contact-info-columns i {
    margin-left: 5px;
    color: #ccc;
}

/* Adaptación para pantallas más pequeñas */
@media (max-width: 768px) {
    .hero-container-columns {
        flex-direction: column;
        text-align: center;
    }

    .hero-left-column {
        text-align: center;
    }

    .hero-right-column {
        text-align: center;
    }

    .hero-right-column .contact-info-columns {
        display: block;
        margin: 20px auto;
        text-align: center;
    }
}