    body {
        background-color: #f4f4f4;
        margin: 0;
        padding: 0;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    h1 {
        text-align: center;
        color: #333;
        margin-bottom: 40px;
    }

    /* Grid System */
    .servicios-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    /* Tarjeta de Servicio */
    .servicio-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .servicio-card:hover {
        transform: translateY(-5px);
    }

    .card-image {
        height: 200px;
        width: 100%;
        object-fit: cover;
        background-color: #ddd;
    }

    .card-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .badge {
        display: inline-block;
        background-color: #e3f2fd;
        color: #0d47a1;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: bold;
        margin-bottom: 10px;
        align-self: flex-start;
    }

    .card-title {
        margin: 0 0 10px 0;
        font-size: 1.4rem;
        color: #222;
    }

    .card-lema {
        color: #666;
        font-style: italic;
        margin-bottom: 15px;
        font-size: 0.95rem;
    }

    .card-footer {
        margin-top: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #eee;
        padding-top: 15px;
    }

    .price {
        font-weight: bold;
        color: #28a745;
        font-size: 1.1rem;
    }

    .price.cotizacion {
        color: #ff9800;
    }

    .btn-ver {
        background-color: #333;
        color: white;
        text-decoration: none;
        padding: 8px 16px;
        border-radius: 5px;
        font-size: 0.9rem;
        transition: background 0.3s;
    }

    .btn-ver:hover {
        background-color: #555;
    }