        body {
    font-family: 'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', 'Marker Felt', sans-serif;
            background-color: #fff4ed;
        }

        .banner-section {
            background-image: url('../img/funnel-for-school/banner-bg.svg');
            background-size: cover;
            background-position: center;
            padding: 50px 0;
        }

        .banner-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

        .banner-left {
            flex: 1.2; /* Increased flex value for more width */
            min-width: 300px;
            padding-right: 30px;
        }

        .banner-right {
            flex: 0.8; /* Decreased flex value for less width */
            min-width: 300px;
            text-align: center;
        }

        .banner-right img {
            max-width: 100%;
            height: auto;
            width: 531.9px;
            height: 321.8px;
            object-fit: contain;
        }

        .sub-title {
            font-size: 22px;
            font-weight: bold;
            color: #1391a9;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .decoration-img {
            width: 92.4px;
            height: 104.9px;
            flex-shrink: 0;
        }

        .small-decoration-img {
            width: 39.2px;
            height: 39.2px;
            flex-shrink: 0;
        }

        .title {
            font-size: 29px;
            color: #292929;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .solution-title {
            font-size: 29px;
            color: #fa8502;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: bold;
        }

        .description {
            margin-bottom: 30px;
            line-height: 1.5;
            max-width: 500px;
            text-align: justify;
            color: #000;
        }

        .btn-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .btn-partnership {
            background-color: #ff9a3b;
            color: white;
            border-radius: 50px;
            padding: 12px 25px;
            border: none;
            font-weight: bold;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn-consultation {
            background-color: transparent;
            border-radius: 50px;
            padding: 12px 25px;
            border: 2px solid #1391a9;
            color: #1391a9;
            font-weight: bold;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn-partnership:hover {
            background-color: #fa8502;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(250, 133, 2, 0.3);
        }

        .btn-consultation:hover {
            background-color: rgba(19, 145, 169, 0.1);
            transform: translateY(-2px);
        }

        @media (max-width: 992px) {
            .banner-left {
                flex: 1;
                padding-right: 20px;
            }

            .banner-right {
                flex: 1;
            }
        }

        @media (max-width: 768px) {
            .banner-content {
                flex-direction: column;
            }

            .banner-left, .banner-right {
                padding-right: 0;
                text-align: center;
                width: 100%;
            }

            .sub-title, .solution-title {
                justify-content: center;
            }

            .decoration-img {
                display: none; /* Keep visible on mobile */
            }

            .banner-right img {
                width: 100%;
                max-width: 531.9px;
                height: auto;
                margin-top: 30px;
            }

            .btn-container {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .sub-title {
                flex-direction: column;
                gap: 5px;
            }

            .solution-title {
                flex-direction: column;
                gap: 5px;
            }

            .btn-container {
                flex-direction: column;
                align-items: center;
            }

            .btn-partnership,
            .btn-consultation {
                width: 100%;
                max-width: 290px;
            }
        }

        /* New Section Styles */
        .standards-section {
            padding: 80px 0;
            text-align: center;
            background-image: url('../img/funnel-for-school/standards-section-bg.svg');
            background-size: cover;
            background-position: center;
            padding: 50px 0;
        }

        .section-title {
            font-size: 35px;
            color: #292929;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .section-title span {
            color: #ff9a3b;
        }

        .section-divider {
            width: 83.1px;
            height: 39.4px;
            margin: 0 auto 30px;
        }

        .section-description {
            max-width: 800px;
            margin: 0 auto 60px;
            font-size: 16px;
            line-height: 1.6;
        }

        .features-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-box {
            width: 534px;
            background: rgba(255, 255, 255, 0.205);
            border-radius: 10px;
            border: 1px solid #29292921;
            padding: 25px;
            display: flex;
            text-align: left;
            transition: transform 0.3s ease;
        }

        .feature-box:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 77.2px;
            height: 74.9px;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .feature-content {
            flex: 1;
        }

        .feature-title {
            font-size: 17px;
            color: #000;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .feature-description {
            font-size: 15px;
            color: #333;
            line-height: 1.5;
        }

        @media (max-width: 1200px) {
            .feature-box {
                width: calc(50% - 30px);
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 40px;
            }

            .feature-box {
                width: 100%;
                max-width: 534px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 32px;
            }

            .feature-box {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .feature-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

        /* Partnership Process Section */
        .partnership-section {
            background-image: url('../img/funnel-for-school/partnership-bg.svg');
            background-size: cover;
            background-position: top;
            padding: 80px 0;
            color: white;
            text-align: center;
        }

        .partnership-subtitle {
            font-size: 29px;
            color: #fa8502;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .partnership-title {
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: bold;
            color: #fff;
        }

        .partnership-divider {
            width: 83.1px;
            height: 39.4px;
            margin: 0 auto 30px;
        }

        .partnership-description {
            max-width: 800px;
            margin: 0 auto 60px;
            font-size: 16px;
            line-height: 1.6;
            color: #fff;
        }

        .process-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-box {
            width: 350px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            border-radius: 30px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.3s ease;
        }

        .process-box:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.25);
        }

        .process-icon {
            width: 100px;
            height: 90px;
            margin-bottom: 20px;
        }

        .process-step-title {
            font-size: 17px;
            font-weight: bold;
            margin-bottom: 15px;
            text-align: center;
            color: #fff;
        }

        .process-step-description {
            font-size: 14px;
            line-height: 1.5;
            text-align: center;
            color: #fff;
        }

        /* Special arrangement for 3+2 boxes */
        .process-row {
            display: flex;
            justify-content: center;
            width: 100%;
            gap: 30px;
            margin-bottom: 30px;
        }

        .process-row:last-child {
            margin-bottom: 0;
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .process-box {
                width: 300px;
                min-height: 300px;
            }
        }

        @media (max-width: 992px) {
            .process-row {
                flex-wrap: wrap;
            }

            .process-box {
                width: 45%;
            }
        }

        @media (max-width: 768px) {
            .partnership-title {
                font-size: 30px;
            }

            .partnership-subtitle {
                font-size: 24px;
            }

            .process-box {
                width: 100%;
                max-width: 350px;
                min-height: auto;
            }

            .process-row {
                margin-bottom: 0;
                gap: 20px;
            }
        }



        .hero-section {
            height: 100vh;
            width: 100%;
            background-image: url('../img/funnel-for-school/form-section-bg.svg');
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .main-box {
            background-color: white;
            width: 80%;
            height: 95%;
            max-width: 1200px;
            display: flex;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.048);
        }

        .left-box {
            width: 48%;
            background-color: #1391a9;
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            border-radius: 20px;
        }

        .left-box img {
            width: 380px;
            height: 260px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 20px;
        }

        .left-box .subtitle {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .left-box h1 {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #fff;
        }

        .left-box p {
            font-size: 0.95rem;
            line-height: 1.5;
            max-width: 80%;
            margin: 0 auto;
            color: #fff;
        }

        .right-box {
            width: 50%;
            background-color: white;
            padding: 30px;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .right-box .corner-img {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 80px;
            height: 80px;
            object-fit: cover;
        }

        .right-box h2 {
            color: #1391a9;
            font-size: 20px;
            font-weight: bold;
            margin: 20px 0;
            text-align: center;
        }

        .form-container {
            background-image: url('../img/funnel-for-school/form-right-bg.svg');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            padding: 20px;
            border-radius: 15px;
            max-width: 500px;
            margin: 0 auto;
            width: 100%;
        }

        .form-group {
            position: relative;
            margin-bottom: 15px;
        }

        .form-group i {
            position: absolute;
            left: 18px; /* Adjusted for perfect alignment */
            top: 50%;
            transform: translateY(-50%);
            color: #1391a9;
            z-index: 2;
        }

        #calendar-icon {
            left: 28px !important;
        }

        #clock-icon {
            left: 28px !important;
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 10px 20px 10px 45px;
            border: 1px solid #1391a9;
            border-radius: 50px;
            font-size: 1rem;
            color: #555;
            background-color: rgba(255, 255, 255, 0.116);
            position: relative;
        }

        /* Enhanced Datepicker Styles */
        .datepicker-dropdown {
            width: 370px;
            border-radius: 15px;
            padding: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border: 1px solid #1391a9;
            font-family: "Comic Sans MS", "Comic Sans", cursive;
        }

        .datepicker-dropdown:before {
            border-bottom-color: #1391a9;
        }

        .datepicker-dropdown:after {
            border-bottom-color: #f8f9fa;
        }

        .datepicker table {
            width: 100%;
        }

        .datepicker table tr td,
        .datepicker table tr th {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            text-align: center;
            transition: all 0.2s;
        }

        .datepicker table tr td.day:hover {
            background: rgba(19, 145, 169, 0.2);
        }

        .datepicker table tr td.active,
        .datepicker table tr td.active:hover {
            background: #1391a9;
            color: white;
            font-weight: bold;
        }

        .datepicker table tr td.today {
            background: rgba(19, 145, 169, 0.3);
            color: #000;
        }

        .datepicker table tr td.today:hover {
            background: rgba(19, 145, 169, 0.4);
        }

        .datepicker .datepicker-switch {
            font-weight: bold;
            color: #1391a9;
        }

        .datepicker .next,
        .datepicker .prev {
            color: #1391a9;
            font-weight: bold;
        }

        /* Enhanced Timepicker Styles */
        .bootstrap-timepicker-widget {
            width: 180px !important;
            border-radius: 15px;
            padding: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border: 1px solid #1391a9;
            font-family: "Comic Sans MS", "Comic Sans", cursive;
        }

        .bootstrap-timepicker-widget:before {
            border-bottom-color: #1391a9;
        }

        .bootstrap-timepicker-widget:after {
            border-bottom-color: #f8f9fa;
        }

        .bootstrap-timepicker-widget table td {
            padding: 5px;
        }

        .bootstrap-timepicker-widget table td a {
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        .bootstrap-timepicker-widget table td a:hover {
            background: #1391a9;
            color: white;
        }

        .bootstrap-timepicker-widget table td input {
            width: 40px;
            border: 1px solid #1391a9;
            border-radius: 5px;
            text-align: center;
            color: #1391a9;
            font-weight: bold;
        }

        .row {
            display: flex;
            gap: 15px;
        }

        .row .form-group {
            flex: 1;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            margin: 15px 0;
        }

        .checkbox-group input {
            margin-right: 8px;
            accent-color: #1391a9;
        }

        .checkbox-group label {
            color: #555;
            font-size: 0.85rem;
        }

        .button-group {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .submit-btn {
            background-color: #1391a9;
            color: white;
            border: none;
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-right: 15px;
        }

        .submit-btn:hover {
            background-color: #0d7a8f;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(3, 222, 251, 0.4);
        }

        .button-img {
            width: 60px;
            height: 30px;
            animation: float 3s ease-in-out infinite;
        }

        /* @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(0px); }
        } */

        @media (max-width: 1200px) {
            .main-box {
                width: 90%;
            }

            .left-box img {
                width: 320px;
                height: 220px;
            }
        }

        @media (max-width: 992px) {
            .main-box {
                flex-direction: column;
                height: auto;
            }

            .left-box, .right-box {
                width: 100%;
            }

            .left-box {
                border-radius: 30px 30px 0 0;
            }

            .right-box {
                border-radius: 0 0 30px 30px;
            }

            .left-box img {
                width: 280px;
                height: 200px;
            }
        }

        @media (max-width: 768px) {
            .main-box {
                width: 95%;
            }

            .left-box, .right-box {
                padding: 20px;
            }

            .left-box h1 {
                font-size: 1.6rem;
            }

            .right-box h2 {
                font-size: 1.3rem;
            }

            .form-container {
                padding: 15px;
            }

            .row {
                flex-direction: column;
                gap: 0;
            }

            .button-group {
                flex-direction: column;
                gap: 15px;
            }

            .submit-btn {
                margin-right: 0;
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .left-box img {
                width: 220px;
                height: 160px;
            }

            .left-box h1 {
                font-size: 1.4rem;
            }

            .right-box h2 {
                font-size: 1.1rem;
            }

            .corner-img {
                width: 60px;
                height: 60px;
            }

            .button-img {
                width: 50px;
                height: 25px;
            }
        }



        /* FAQ Section */
        .faq-section {
            background-image: url('../img/funnel-for-school/faq-bg.svg');
            background-size: cover;
            background-position: center;
            min-height: 870px;
            padding: 80px 0;
            color: white;
            text-align: center;
            position: relative;
        }

        .faq-container {
            position: relative;
            z-index: 1;
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-subtitle {
            color: #1391a9;
            font-size: 33px;
            font-weight: bold;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .faq-title {
            color: white;
            font-size: 40px;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .faq-divider {
            width: 83.1px;
            height: 39.4px;
            margin: 0 auto 40px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
        }

        .accordion {
            max-width: 800px;
            margin: 0 auto;
            --bs-accordion-border-color: transparent;
            --bs-accordion-btn-focus-box-shadow: none;
        }

        .accordion-item {
            background-color: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255,255,255,0.2) !important;
            border-radius: 10px !important;
            margin-bottom: 20px;
            overflow: hidden;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .accordion-button {
            background-color: transparent !important;
            color: white !important;
            font-weight: bold;
            padding: 25px 25px 25px 80px !important;
            position: relative;
            font-size: 18px;
        }

        .accordion-button:not(.collapsed) {
            background-color: rgba(255, 255, 255, 0.25) !important;
            box-shadow: none !important;
        }

        .question-icon {
            position: absolute;
            left: 25px;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
        }

        .accordion-button::after {
            position: absolute;
            right: 25px;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            transition: transform 0.3s ease;
        }

        .accordion-button:not(.collapsed)::after {
            transform: rotate(-180deg);
        }

        .accordion-body {
            padding: 20px 25px 25px 80px !important;
            text-align: left;
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .faq-section {
                min-height: 800px;
                padding: 60px 0;
            }

            .faq-title {
                font-size: 32px;
            }

            .faq-subtitle {
                font-size: 28px;
            }

            .accordion-button {
                padding: 20px 20px 20px 65px !important;
                font-size: 16px;
            }

            .question-icon {
                left: 20px;
                width: 35px;
                height: 35px;
            }

            .accordion-body {
                padding: 0 20px 20px 65px !important;
                font-size: 15px;
            }
        }

        @media (max-width: 576px) {
            .faq-title {
                font-size: 26px;
            }

            .faq-subtitle {
                font-size: 22px;
            }

            .accordion-button {
                padding: 18px 15px 18px 55px !important;
                font-size: 15px;
            }

            .question-icon {
                left: 15px;
                width: 30px;
                height: 30px;
            }

            .accordion-body {
                padding: 0 15px 20px 55px !important;
            }
        }

        /* Work Together Section */
        .work-together-section {
            background: white;
            border-radius: 30px;
            width: 1100px;
            max-width: 95%;
            margin: -130px auto 20px;
            padding: 60px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 2;
        }

        .work-container {
            display: flex;
            align-items: center;
            gap: 20px; /* Reduced from 40px to 20px */
        }

        .work-left {
            flex: 0 0 auto;
            width: 354.3px; /* Fixed width for image */
        }

        .work-left img {
            width: 100%;
            height: 270px;
            object-fit: contain;
            border-radius: 15px;
        }

        .work-right {
            flex: 1;
            text-align: left;
            padding-left: 20px; /* Added space between image and content */
        }

        .work-subtitle {
            color: #fb8503;
            font-size: 25px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .work-title {
            color: #292929;
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .title-divider {
            width: 100px;
            height: 4px;
            background: #292929;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .work-description {
            color: #555;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        /* Button Styles (matching banner) */
        .btn-container {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .btn-partnership {
            background-color: #ff9a3b;
            color: white;
            border-radius: 50px;
            padding: 10px 20px;
            border: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .btn-consultation {
            background-color: transparent;
            border-radius: 50px;
            padding: 10px 20px;
            border: 2px solid #1391a9;
            color: #1391a9;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .btn-partnership:hover {
            background-color: #fa8502;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(250, 133, 2, 0.3);
        }

        .btn-consultation:hover {
            background-color: rgba(19, 145, 169, 0.1);
            transform: translateY(-2px);
        }

        @media (max-width: 992px) {
            .work-container {
                flex-direction: column;
                gap: 30px;
            }

            .work-left {
                width: 100%;
                max-width: 354.3px;
            }

            .work-right {
                padding-left: 0;
                text-align: center;
            }

            .title-divider {
                margin-left: auto;
                margin-right: auto;
            }

            .btn-container {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .work-together-section {
                padding: 40px;
            }

            .work-left img {
                height: auto;
            }
        }

        @media (max-width: 576px) {
            .work-subtitle {
                font-size: 22px;
            }

            .work-title {
                font-size: 24px;
            }

            .btn-container {
                flex-direction: column;
                gap: 10px;
            }

            .btn-partnership,
            .btn-consultation {
                width: 100%;
            }
        }
        @media (max-width: 992px) {
            .work-container {
                flex-direction: column;
            }

            .work-left img {
                width: 280px;
                height: 264px;
            }

            .work-right {
                text-align: center;
            }

            .title-divider {
                margin-left: auto;
                margin-right: auto;
            }
        }

        /* @media (max-width: 768px) {
            .faq-section {
                min-height: auto;
                padding-bottom: 120px;
            }

            .faq-title {
                font-size: 32px;
            }

            .faq-subtitle {
                font-size: 28px;
            }

            .accordion-button {
                padding: 15px 50px 15px 60px;
                font-size: 0.9rem;
            }

            .accordion-body {
                padding: 0 20px 20px 60px;
            }

            .work-together-section {
                padding: 40px;
            }
        }

        @media (max-width: 576px) {
            .faq-title {
                font-size: 26px;
            }

            .faq-subtitle {
                font-size: 22px;
            }

            .accordion-button {
                padding: 12px 40px 12px 50px;
            }

            .accordion-button::before {
                left: 10px;
                width: 30px;
                height: 30px;
            }

            .work-subtitle {
                font-size: 22px;
            }

            .work-title {
                font-size: 24px;
            }
        } */