/* Services Section */
        .services-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .service-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            width: 320px;
            max-width: 100%;
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 8px 32px rgba(0, 123, 255, 0.13);
        }

        .service-img {
            height: 200px;
            overflow: hidden;
        }

        .service-img img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            transition: var(--transition);
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 1.5rem;
        }

        .service-title {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-dark);
        }

        .badge {
            display: inline-block;
            font-size: 0.8rem;
            padding: 0.2em 0.7em;
            border-radius: 8px;
            margin-left: 0.5em;
            font-weight: 600;
        }

        .badge.best {
            background: #28a745;
            color: #fff;
        }

        .badge.new {
            background: #007bff;
            color: #fff;
        }

        .service-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin: 1rem 0;
        }

        .service-price span {
            font-size: 1rem;
            font-weight: normal;
            color: var(--gray);
        }

        .book-now-btn {
            margin-top: 1rem;
            width: 100%;
        }

        .service-comparison {
            margin: 2.5rem auto 1.5rem auto;
            max-width: 600px;
            background: #f8f9fa;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .service-comparison table {
            width: 100%;
            border-collapse: collapse;
        }

        .service-comparison th,
        .service-comparison td {
            padding: 0.7em 1em;
            border-bottom: 1px solid #e0e0e0;
            text-align: center;
        }

        .service-comparison th {
            background: #e9ecef;
        }

        .faq-section {
            margin: 2rem auto;
            max-width: 600px;
        }

        .faq-item {
            margin-bottom: 1rem;
            border-radius: 8px;
            background: #f7faff;
            box-shadow: 0 1px 4px rgba(0, 123, 255, 0.04);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 1em;
            cursor: pointer;
            outline: none;
            color: #007bff;
            border-radius: 8px 8px 0 0;
        }

        .faq-answer {
            display: none;
            padding: 1em;
            color: #333;
            border-top: 1px solid #e0e0e0;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .cta-banner {
            background: linear-gradient(90deg, #007bff 60%, #00c6ff 100%);
            color: #fff;
            text-align: center;
            padding: 2rem 1rem;
            border-radius: 14px;
            margin: 2.5rem auto 0 auto;
            max-width: 700px;
            box-shadow: 0 4px 24px rgba(0, 123, 255, 0.10);
        }

        .cta-banner h2 {
            margin-bottom: 1rem;
            font-size: 2rem;
        }

        /* Responsive Services Section */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }

            .service-img {
                height: 160px;
            }

            .service-content {
                padding: 1rem;
            }
        }

        @media (max-width: 480px) {
            .service-title {
                font-size: 1.1rem;
            }

            .service-price {
                font-size: 1.2rem;
            }

            .service-img {
                height: 120px;
            }
        }