    .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            padding: 20px;
            height: min-content;
        }

        .package-label {
            color: #2e7d32;
            font-size: 0.9rem;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .service-title {
            font-size: 1.2rem;
            font-weight: bold;
            margin: 10px 0;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .price-duration {
            display: flex;
            align-items: center;
            margin: 10px 0;
            gap: 8px;
        }

        .price {
            font-weight: bold;
            font-size: 1.1rem;
        }

        .duration {
            color: #666;
            font-size: 0.9rem;
        }

        .button-container {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .view-details-btn, .add-btn {
            flex: 1;
            padding: 8px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .view-details-btn {
            background: white;
            border: 1px solid #ddd;
        }

        .add-btn {
            background: #F9A392;
            color: white;
            border: none;
        }

        .menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .menu-content {
            background: white;
            padding: 20px;
            border-radius: 12px;
            width: 90%;
            max-width: 500px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }

        .close-menu {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }

        .menu-procedure {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .menu-procedure:last-child {
            border-bottom: none;
        }

        .procedure-details {
            flex: 1;
        }

        .procedure-title {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .procedure-description {
            color: #666;
            font-size: 0.9rem;
        }

        .menu-add-btn {
            padding: 6px 12px;
            background: #F9A392;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
        .service-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
           
        }
   