        /* General Styles */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
        }

        /* Section Styles */
        .ahs-education-section {
            width: 100%;
            padding: 40px 20px;
            box-sizing: border-box;
            position: relative;
        }

        /* Header Image */
        .ahs-header-image {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
        }

        .ahs-header-image img {
            width: 40%;
            height: auto;
            border-radius: 8px;
        }

        /* Features Grid */
        .ahs-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-left: 80px;
            margin-right: 80px;
            position: relative;
        }

        /* Feature Card */
        .ahs-feature-card {
            background: white;
            border: 1px solid #eeeeee;
            border-radius: 10px;
            padding: 10px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.034);
        }

        .ahs-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.055);
        }

        /* Feature Icon */
        .ahs-feature-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 0px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
        }

        .ahs-feature-icon img {
            max-width: 90px;
            max-height: 90px;
        }

        /* Feature Title */
        .ahs-feature-title {
            font-family: cursive, sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0px;
            color: #333;
            margin-top: 15px;
        }

        /* Feature Description */
        .ahs-feature-desc {
            color: #555;
            font-weight: 400;
            line-height: 1.5;
            font-size: 0.9rem;
            font-family: cursive, sans-serif;
            margin-top: 10px;
        }

        /* Decorative Image */
        .ahs-decorative-image {
            position: absolute;
            width: 72px;
            height: 70.2px;
            right: 50%;
            bottom: 40px;
            z-index: 10;
        }

        /* Background Image */
        .ahs-education-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("/assets/reasons-for-choose-ahs/section-bg.png");
            background-size: cover;
            background-position: center;
            z-index: -1;
        }

        /* Responsive Adjustments */
        @media (max-width: 1200px) {
            .ahs-features-grid {
                margin-left: 80px;
                margin-right: 80px;
            }

            .ahs-decorative-image {
                right: 5%;
            }
        }

        @media (max-width: 1024px) {
            .ahs-features-grid {
                grid-template-columns: repeat(2, 1fr);
                margin-left: 60px;
                margin-right: 60px;
            }

            .ahs-main-heading h2 {
                font-size: 2.2rem;
            }

            .ahs-decorative-image {
                position: relative;
                margin: 30px auto;
                right: auto;
                bottom: auto;
                display: block;
            }
        }

        /* Tablet (small) and large mobile */
        @media (max-width: 768px) {
            .ahs-features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                margin-left: 40px;
                margin-right: 40px;
            }

            .ahs-main-heading h2 {
                font-size: 2rem;
            }

            .ahs-feature-card {
                padding: 15px;
            }

            .ahs-subtitle {
                padding: 0 20px;
            }

            .ahs-header-image img {
                width: 70%;
            }
        }

        /* Mobile devices */
        @media (max-width: 576px) {
            .ahs-education-section {
                padding: 40px 15px;
            }

            .ahs-features-grid {
                grid-template-columns: 1fr;
                margin-left: 20px;
                margin-right: 20px;
                gap: 15px;
            }

            .ahs-main-heading h2 {
                font-size: 1.8rem;
            }

            .ahs-subtitle {
                font-size: 0.9rem;
                margin-bottom: 30px;
                padding: 0 10px;
            }

            .ahs-feature-card {
                padding: 15px 10px;
            }

            .ahs-feature-title {
                font-size: 1.1rem;
            }

            .ahs-feature-desc {
                font-size: 0.9rem;
            }

            .ahs-header-image img {
                width: 90%;
            }
        }

        /* Small mobile devices */
        @media (max-width: 380px) {
            .ahs-features-grid {
                margin-left: 10px;
                margin-right: 10px;
            }

            .ahs-main-heading h2 {
                font-size: 1.6rem;
            }
        }