        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "DM Sans", sans-serif;
            text-decoration: none;
            list-style-type: none;
            color: #5A5D73;
        }

        /* h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: "Fahkwang", sans-serif;
        } */

        .container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .hero {
            background: #E0E7FE;
            padding: 80px 0;
        }

        .heroPart {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .heroleft {
            width: 50%;
        }

        .heroRight {
            width: 50%;
        }

        .heroRight img {
            width: 100%;
        }

        .heroleft h1 {
            font-size: 54px;
            color: #2F1C6A;
            font-weight: 700;
        }

        .heroleft h3 {
            font-size: 22px;
            color: #2e5f7e;
            font-weight: 600;
        }

        .heroleft p {
            font-size: 18px;
            color: #5A5D73;
            margin: 20px 0;
        }

        .heroleft a {
            background: #45b452;
            color: white;
            border: 1px solid #45b452;
            padding: 16px 40px;
            border-radius: 30px;
            display: inline-block;
            transition: .5s;
            text-transform: uppercase;
        }

        .heroleft a:hover {
            background: white;
            color: #45b452;
        }

        /* plan */
        .plan {
            padding: 80px 0;
        }

        .plan h2 {
            text-align: center;
            font-size: 42px;
            color: #2e5f7e;
        }

        .plan p {
            font-size: 18px;
            color: #5A5D73;
            text-align: center;
        }

        .planPart {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 80px;
        }

        .planItem>* {
            margin-bottom: 14px;
        }


        .planItem {
            background: #fff;
            border-radius: 12px;
            padding: 30px 25px 25px 25px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            position: relative;
            border: none;
        }

        .planItem a {
            display: inline-block;
            background-color: #1f4e79;
            color: #fff;
            padding: 12px 20px;
            border-radius: 6px;
            text-align: center;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            margin-bottom: 0;
            transition: .5s;
        }

        .planItem a:hover {
            transform: scale(1.03);
        }

        .planItem h3 {
            color: #2e5f7e;
            font-size: 20px;
            font-weight: 600;
        }

        .planItem p {
            color: #999;
            text-align: left;
            font-size: 14px;
        }

        .planItem p span {
            font-size: 18px;
            font-weight: bold;
            color: #28a745;
        }

        .planItem p del {
            text-decoration: line-through;
        }

        .planItem h4 {
            background: #d4edda;
            color: #155724;
            font-size: 13px;
            font-weight: 600;
            padding: 6px 10px;
            border-radius: 5px;
            display: inline-block;
        }

        .planItem ul li {
            font-size: 18px;
        }

        .why h3 {
            text-align: center;
            font-size: 42px;
            color: #2e5f7e;
        }

        .why {
            margin: 80px 0;
        }

        .why p {
            text-align: center;
            font-size: 18px;
        }

        .whyBtns {
            max-width: 570px;
            margin: 80px auto;
            overflow: hidden;
        }

        .whyBtns li {
            font-size: 18px;
            font-weight: 600;
            /* background: #F4F5FF; */
            padding: 12px 30px;
            border-radius: 50px 50px 50px 50px;
        }

        .whyBtns ul {
            background-color: #FFF;
            padding: 0 0 0 0;
            border-style: solid;
            border-width: 1px 1px 1px 1px;
            border-color: #EAEAEA;
            border-radius: 50px 50px 50px 50px;
            display: flex;
            justify-content: space-between;
        }

        .cloudflex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cloudConfig h4 {
            text-align: center;
            font-size: 42px;
        }

        .cloudConfig p {
            margin-bottom: 40px;
        }

        .cloudRight,
        .cloudleft {
            width: 50%;
        }

        .cloudleft ul li {
            display: flex;
            gap: 2px;
            align-items: center;
            font-size: 18px;
            margin-bottom: 5px;
        }

        .powerItem {
            display: flex;
            text-align: left;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .powerItem h4 {
            text-align: left;
            font-size: 24px;
        }

        .powerIcon {
            background: #f4f5ff;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 50px;
            width: 50px;
            border-radius: 50%;
        }

        .powerItem p {
            text-align: left;
            font-size: 18px;
            margin: 0;
        }

        .cloudleft span,
        .cloudleft i {
            color: #28a745;
        }

        @media screen and (max-width: 767px) {
            .container {
                padding: 0 20px;
            }

            .heroPart {
                flex-direction: column;
                text-align: center;
            }

            .heroleft {
                width: 100%;
            }

            .heroRight {
                width: 100%;
            }

            .planPart {
                grid-template-columns: 1fr;
            }

            .cloudflex {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .cloudRight,
            .cloudleft {
                width: 100%;
            }
        }