    body {
        background-color: #f4f4f4;
        margin: 0;
        padding: 0;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    h1 {
        color: var(--azul);
        font-size: 50px;
    }

    /* 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: #00a82a;
        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;
    }
















            .search-container {
            margin: 40px auto;
            max-width: 600px;
            text-align: center;
        }

        .banner-precios {
            text-align: center;
            background-image: url(../content/banners/servo_banner.jpg);
            background-position: center;
            background-size: cover;
            height: 250px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        h2 {
            color: white;
        }

        .search-box {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .search-box input {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }

        .search-box input:focus {
            border-color: var(--azul);
        }

        .section-title {
            margin: 60px 0 20px 0;
            font-size: 2rem;
            color: #222;
            border-left: 5px solid var(--azul);
            padding-left: 15px;
        }

        .no-results {
            text-align: center;
            padding: 100px 20px;
            background: #f9f9f9;
            border-radius: 15px;
            margin-top: 20px;
        }

        .clear-search {
            display: block;
            margin-top: 10px;
            color: #666;
            text-decoration: underline;
            font-size: 0.9rem;
        }
