    /* Add these media queries at the end of your existing CSS */

    /* For tablets and smaller screens */
    @media (max-width: 768px) {
        .services-container {
            padding: 20px;
        }

        .main-heading {
            font-size: 20px;
        }

        .doctor-profile-container {
            flex-direction: column;
        }

        .doctor-profile-card {
            flex: 1 1 100%;
        }

        .service-cta-box {
            padding: 20px;
        }

        .service-cta-box .highlight-text {
            font-size: 18px;
        }

        .cta-btn {
            padding: 12px 25px;
            min-width: 160px;
        }
    }

    /* For mobile devices */
    @media (max-width: 480px) {
        .services-container {
            padding: 15px;
            margin: 10px 0;
        }

        .main-heading {
            font-size: 18px;
        }

        .tagline {
            font-size: 14px;
        }

        .doctor-img {
            width: 100px;
            height: 100px;
        }

        .doctor-profile-card h3 {
            font-size: 16px;
        }

        .doctor-profile-card p {
            font-size: 13px;
        }

        .service-cta-box .highlight-text {
            font-size: 16px;
        }

        .service-cta-box h3 {
            font-size: 16px;
            padding: 0 10px;
        }

        .cta-btn {
            padding: 10px 20px;
            min-width: 140px;
            font-size: 14px;
        }
    }
