* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.header-spacing {
    height: 100px; /* Ajusta este valor según sea necesario */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Línea roja redondeada debajo del título */
.section-title {
    position: relative;
    text-align: left;
    display: inline-block; /* Asegura que la línea no ocupe todo el ancho */
    font-size: 26px; /* Ajusta según el diseño */
    color: #333;
    margin-bottom: 20px;
}

.section-title::after {
    content: '';
    display: block;
    width: 50%; /* Ajusta el ancho de la línea (50% del título) */
    height: 4px; /* Grosor de la línea */
    background-color: #e63946; /* Color rojo */
    border-radius: 2px; /* Bordes redondeados */
    margin: 8px 0 0 0; /* Espaciado entre el título y la línea */
}

header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.logo {
    max-width: 280px;
}

.title-banner {
    text-align: center;
    background-color: #f5f5f5;
    padding: 15px 0;
    margin-bottom: 10px;
}

.main-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.image-section {
    flex: 1;
    min-width: 300px;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.text-section {
    flex: 1;
    min-width: 300px;
}

.text-section p,
.additional-info p {
    text-align: justify; /* Alineación justificada para los párrafos */
}

h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 26px;
}

p {
    margin-bottom: 15px;
}

.additional-info {
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    text-align: justify;
}

/* Botón para cotizar servicio */
.quote-button-container {
    text-align: center;
    margin-top: 20px;
}

.quote-button {
    display: inline-block;
    background-color: #e63946;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(230, 57, 70, 0.3);
}

.quote-button:hover {
    background-color: #d62b39;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(230, 57, 70, 0.4); /* Color más oscuro para el hover */
}

.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.highlight-card {
    flex: 1;
    min-width: 180px;
    background-color: #f8f9fa;
    border-left: 4px solid #e63946;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

.highlight-card h4 {
    font-size: 16px;
    color: #e63946;
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 14px;
}

/* Diseño responsivo */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .main-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .image-section img {
        width: 100%;
        height: auto;
    }

    .text-section {
        text-align: center;
    }

    .quote-button {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .service-highlights {
        flex-direction: column;
        gap: 15px;
    }
    
    .highlight-card {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .text-section h1 {
        font-size: 20px;
    }

    .text-section p {
        font-size: 14px;
    }

    .quote-button {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    
    .logo {
        max-width: 220px;
    }
    
    h1 {
        font-size: 22px;
    }
}