        .about-section {
            /* min-height: 100vh; */
            /* display: flex;
            align-items: center; */
            padding: 60px 0;
            /* background: #f5f5f5; */
            /* margin-top: 89px; */
        }

        .about-title {
            font-size: 55px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 30px;
            background-color: #293C89;
            border-radius: 10px;
            align-items: center;
            display: flex;
            justify-content: center ;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .about-text {
            font-size: 16px;
            line-height: 1.9;
            color: #555;
            max-width: 560px;
        }

        .about-bold {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.8;
            color: #222;
            margin-top: 30px;
            max-width: 560px;
        }

        .about-feature-box {
            display: flex;
            align-items: flex-start;
            gap: 24px;
            margin-bottom: 50px;
        }

        .about-icon-box {
            width: 80px;
            height: 80px;
            background: #293C89;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .about-icon-box i {
            font-size: 34px;
            color: #fff;
        }

        .about-feature-title {
            color: #293C89;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .about-feature-text {
            color: #444;
            font-size: 16px;
            line-height: 1.8;
            max-width: 480px;
        }

        @media (max-width: 991px) {
            .about-title {
                font-size: 56px;
            }

            .about-text,
            .about-bold,
            .about-feature-text {
                font-size: 16px;
            }

            .about-feature-title {
                font-size: 24px;
            }
        }

        @media (max-width: 767px) {
            .about-section {
                padding: 40px 0;
            }

            .about-title {
                font-size: 44px;
            }

            .about-feature-box {
                margin-top: 40px;
                margin-bottom: 40px;
            }
        }