       * {
            scroll-behavior: smooth;
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
        }
        .container {
            width: 100%;
            background-color: #ffffff;
        }

        h1 {
            font-size: 2em;
            font-weight: 600;
            color: #000000;
            line-height: 1.2;
        }
        p {
            font-size: 16px;
            font-weight: 300;
            color: #333333;
        }
        .header {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 10px 50px;
            position: sticky;
            top: 0;
            z-index: 999999;
        }
        .header-col-1 {
            flex-basis: 50%;
        }
        .logo {
            width: 150px;
        }
        .header-col-2 {
            flex-basis: 50%;
            text-align: right;
        }
        .header-col-2 .btn {
            background-color: #005dff;
            color: #ffffff;
            padding: 10px 14px;
            border-radius: 100px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
        }
        .hp-content {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            width: 100%;
            padding: 100px 50px;
        }
        .hp-content .btn {
            position: relative;
            width: fit-content;
            background-color: #005dff;
            color: #ffffff;
            padding: 10px 14px;
            border-radius: 100px;
            border: none;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            top: 20px;
            text-align: center;
            margin: 0 auto;
        }
        .hp-content-col {
            flex-basis: 100%;
            height: 28vh;
            text-align: center;
            padding-top: 50px;
        }
         .content {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            width: 100%;
            padding: 50px;
        }
        .content .btn {
            position: relative;
            width: fit-content;
            background-color: #005dff;
            color: #ffffff;
            padding: 10px 14px;
            border-radius: 100px;
            border: none;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            top: 20px;
            text-align: center;
            margin: 0 auto;
            cursor: pointer;
        }
        .r404 {
            width: 45%;
        }
        .content-col {
            flex-basis: 50%;
            text-align: center;
            padding-top: 50px;
            margin: 0 auto;
        }
        .contactForm {
            input[type="text"], input[type="email"], input[type="tel"] {
                width: 49.5%;
                padding: 10px;
                border-radius: 8px;
                border: 1px solid #eeeeee;
                font-size: 18px;
                font-weight: 300;
                color: #000000;
            }
            input[type="text"]::placeholder {
                font-size: 18px;
                font-weight: 300;
                color: #adadad;
            }
            select {
                width: 100%;
                padding: 10px;
                border-radius: 8px;
                border: 1px solid #eeeeee;
                font-size: 18px;
                font-weight: 300;
                color: #000000;
            }
            textarea {
                width: 100%;
                padding: 10px;
                border-radius: 8px;
                border: 1px solid #eeeeee;
                font-size: 18px;
                font-weight: 300;
                color: #000000;
            }
            textarea::placeholder {
                font-size: 18px;
                font-weight: 300;
                color: #adadad;
            }
            text-align: left;
        }
        .footer {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            width: 100%;
            padding: 50px;
        }
        .footer-col {
            flex-basis: 100%;
            text-align: center;
        }
        .footer-col a {
            color: #005dff;
        }