

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #13357b;
}

h4 {
    font-size: 17px;
    font-weight: 600;
    margin-top: 1rem;
    color: #13357b;
}

/* Estilos de la Sección de Servicios */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.section-title h2 {
    margin-bottom: 30px;
    position: relative;
}

.service-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 8px 10px #13357b63;
    transition: all 0.3s ease;
    text-align: center;
    padding: 20px;
    margin-top: -70px;
    margin-bottom: -400px;
}

.service-item h4 {
    margin-top: 10px;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 8px #13357b;
}

.service-item:hover img {
    transform: scale(1.4);
}



/* Estilos Responsivos */
@media (max-width: 767px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .service-item {
        margin-bottom: 20px;
    }
}

/********************************************************************************************************/

.section-container {
    padding: 40px 0;
}

.section-container .container p {
    color: #3498db;
}

.text-primary {
    color: #3498db;
    text-align: center;
    margin-bottom: 30px;
}

.services-section {
    background: #ffffff;
    padding: 60px 0;
}
 

.col-large-6, .col-medium-6 {
    padding: 15px;
    flex: 0 0 50%;
    max-width: 50%;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 20px;
    box-shadow: 0 8px 10px #13357b63;
}



.service-card:hover img {
    transform: scale(1.4);
}

.service-card h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 8px #13357b;
    
}