    /* Services Section */
        .services-treatment-section {
            background: linear-gradient(180deg, #4d4d4d 0%, #000000 50%, #000000 100%);
            padding: 60px 0 80px;
            position: relative;
        }

        .services-treatment-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .services-treatment-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .services-treatment-title {
            color: #ffffff;
            font-size: 2.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        /* Services Grid */
        .services-treatment-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }

        .services-treatment-card {
            background: rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            padding: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .services-treatment-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.6);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .services-treatment-card-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 6px;
            margin-bottom: 15px;
        }

        .services-treatment-card-title {
            color: #ffffff;
            font-size: 0.95rem;
            text-align: center;
            font-weight: 500;
            margin: 0;
        }

        /* Call to Action */
        .services-treatment-cta-wrapper {
            text-align: center;
            margin-top: 30px;
        }

        .services-treatment-cta-text {
            color: #ffffff;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .services-treatment-cta-button {
            background: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
            padding: 10px 30px;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: lowercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: inline-block;
        }

        .services-treatment-cta-button:hover {
            background: #ffffff;
            color: #0f0f0f;
            transform: scale(1.05);
        }

        .services-treatment-card {
            animation: fadeIn 0.6s ease-out forwards;
        }

        .services-treatment-card:nth-child(1) { animation-delay: 0.1s; }
        .services-treatment-card:nth-child(2) { animation-delay: 0.2s; }
        .services-treatment-card:nth-child(3) { animation-delay: 0.3s; }
        .services-treatment-card:nth-child(4) { animation-delay: 0.4s; }
        .services-treatment-card:nth-child(5) { animation-delay: 0.5s; }
        .services-treatment-card:nth-child(6) { animation-delay: 0.6s; }

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

            .services-treatment-title {
                font-size: 2rem;
            }

        }


        @media (max-width: 768px) {

            .services-treatment-section {
                padding: 40px 0 50px;
            }

            .services-treatment-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .services-treatment-title {
                font-size: 1.75rem;
                letter-spacing: 2px;
            }

            .services-treatment-card-image {
                height: 220px;
            }

            .services-treatment-cta-text {
                font-size: 1.1rem;
                padding: 0 20px;
            }

            .services-treatment-cta-button {
                padding: 10px 25px;
                font-size: 0.85rem;
            }


        }
  
        @media (max-width: 576px) {
            .services-treatment-label {
                font-size: 0.8rem;
            }

            .services-treatment-title {
                font-size: 1.5rem;
            }

            .services-treatment-card {
                padding: 12px;
            }

            .services-treatment-card-image {
                height: 200px;
            }

            .services-treatment-card-title {
                font-size: 0.9rem;
            }



        }