body {
    font-family: sans-serif;
}

.services-header {
    background: linear-gradient(to right, rgb(28, 109, 250), rgb(28, 109, 250));
    color: white;
    padding: 2rem 2rem;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Contenedor de servicios */
.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Tarjetas de servicios */
.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #cce0ff;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-content h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #cc0000;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff9999;
}

.service-content p {
    color: #555;
    margin-bottom: 15px;
    text-align: center;
}

.service-features {
    list-style-type: none;
    margin-top: 15px;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 30px;
}

.service-features li:before {
    content: '•';
    color: #0066cc;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 5px;
    top: 0;
}

/* Pie de página */
.guarantee-banner {
    background: linear-gradient(135deg, #b3d9ff, #e6f2ff);
    color: #003366;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #99c2ff;
}

.guarantee-banner h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #cc0000;
}

.guarantee-banner p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .services-row {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}