
body {
   margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

.main-title {
    color: #143a6d;
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative; 
}

.main-title::after {
    content: "";
    width: 10%; 
    height: 4px;
    background-color: #B8840F;
    display: block;
    margin: 10px auto 0;
}
/* Contenedor Grid Responsivo */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 47px;
}

/* Tarjeta de Servicio */
.services-grid .service-card {
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.service-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #143a6d;
}

.service-info p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1; 
    
}

/* Botón Solicita Cotización */
.btn-quote {
    background-color: #143a6d;
    color: #fff;
    text-align: center;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    border-radius: 0.3rem;
    font-size: 1rem;
    display: inline-block;
    transition: background 0.3s;
    margin-top: auto; 
}

.btn-quote:hover {
    background-color: #B8840F;
}
/* Ajustes Responsivos */
@media (max-width: 768px) {
    .services-grid {
    flex-direction: column;
    align-items: center;
    }
    .main-title::after{
     font-size: 24px;
    }
}