.contenido-servicio {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    animation: fadeInPage 1.2s ease-out;
}

.contenido-servicio h1 {
    color: #2c3e50;
    text-align: center;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
}

.contenido-servicio p {
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.detalles {
    background-color: #ffffff;
    padding: 20px;
    border-left: 5px solid #3498db;
    margin: 30px 0;
}

.detalles ul {
    list-style: none;
    padding-left: 0;
}

.detalles ul li {
    padding: 10px 0;
    border-bottom: 1px inset #eee;
}

.detalles ul li::before {
    content: "✓ ";
    color: #27ae60;
    font-weight: bold;
}


.boton {
    display: inline-block;
    padding: 12px 25px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    display: block;
    width: fit-content;
    margin: 20px auto;
}

.boton:hover {
    background-color: #2980b9;
}


@media (max-width: 600px) {
    .contenido-servicio {
        padding: 15px;
    }
    
    .contenido-servicio h1 {
        font-size: 1.5rem;
    }

    .detalles {
        border-left: none;
        border-top: 5px solid #3498db;
    }
}

