        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        a {
            text-decoration: none;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            font-size: 18px;
        }

        ul,
        li {
            list-style: none;
        }

        .header {
            /* background-color: #0066cc; */
            color: white;
            text-align: center;
            width: 100%;
        }

        .header img {
            max-width: 100%;
            height: auto;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .section {
            background-color: #e6effe;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
        }

        h2 {
            font-size: 24px;
            color: #054deb;
            margin-bottom: 20px;
            width: 240px;
            height: 50px;
            background-color: #a2c4fc;
            border-top-right-radius: 25px;
            border-bottom-left-radius: 25px;
            display: flex;
            align-items: center;
        }

        h2 span {
            display: block;
            width: 50px;
            height: 50px;
            border-bottom-left-radius: 25px;
            background-color: #e53b1f;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
        }

        .section h2 span img {
            width: 24px;
            height: 24px;
        }

        .section-content {
            margin-top: 10px;
            line-height: 2;
        }

        .section-content p {
            margin-bottom: 10px;
        }

        .section-content ul {
            list-style-type: disc;
            margin-bottom: 10px;
        }

        .section-content li {
            margin-bottom: 5px;
            display: flex;
            align-items: flex-start;
        }

        .section-content li img {
            width: 32px;
        }

        .feedback {
            margin-bottom: 15px;
            background-color: #e6effe;
            padding: 20px;
            border-radius: 8px;
        }

        .feedback h3 {
            color: #054deb;
            margin-bottom: 5px;
        }

        .feedback h3 img {
            width: 24px;
            margin-right: 10px;
        }

        .feedback p {
            margin-bottom: 5px;
        }

        .btn {
            display: flex;
            justify-content: end;
        }

        .btn img {
            display: block;
        }


        .images {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .images a {
            max-width: 48%;
            height: auto;
            margin-bottom: 10px;
        }

        .images a img {
            width: 100%;
        }

        .contact {
            text-align: center;
            margin-top: 20px;
            padding-bottom: 80px;
        }

        .contact p {
            margin-bottom: 5px;
        }

        .code-cont {
            display: flex;
            justify-content: center;
        }

        .code-cont .code img {
            width: 120px;
            height: 120px;
        }

        .code-info {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            margin-left: 20px;
        }

        .code-cont p {
            text-align: left;
        }

        .footer-nav {
            position: fixed;
            left: 50%;
            bottom: 0;
            width: 100%;
            max-width: 1200px;
            height: 50px;
            transform: translateX(-50%);
            line-height: 50px;
            font-size: 18px;
            background: #0066ff;
            z-index: 99;
        }

        .footer-nav ul {
            display: flex;
            justify-content: space-between;
        }

        .footer-nav ul li {
            flex: 1;
            text-align: center;
        }

        .footer-nav ul li a {
            color: #ffffff;
        }

        @media (max-width: 768px) {
            .images img {
                max-width: 100%;
            }

            .code-cont {
                flex-direction: column;
            }

            .code-cont p {
                text-align: center;
            }
        }