
            body {
                font-family: Arial, sans-serif;
                color: #606F90;
                margin: 0;
                padding: 0;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                min-height: 100vh;
                box-shadow: inset 0px -4em 6em 10px rgba(39, 133, 201, 0.3);
            }

            .container {
                max-width: 600px;
                margin: 80px auto;
                padding: 0px 10px 10px 10px;
                text-align: center;
                border-radius: 10px;
                background: rgba(39, 133, 201, 0.1);
                box-shadow: 0px 3px 8px 6px rgba(39, 133, 201, 0.5);
            }

            .header {
                margin-bottom: 20px;
            }

            .header img {
                max-width: 30%;
                height: auto;
                border-radius: 10px;
            }

            .header h1 {
                font-size: 1.2em;
                margin: 20px 0;
                color: #2c3e50;
            }

            .description {
                font-size: 1em;
                margin-bottom: 20px;
                line-height: 1.6;
            }

            .btn-container {
                margin-top: 30px;
                margin-bottom: 30px;
            }

            .btn-container1 .btn {
               font-size: 70%;
               background: rgba(39, 133, 201, 0.05);
               box-shadow: inset 0 -1em 1em rgba(39, 133, 201, 0.15);
               color: rgba(0, 103, 152, 0.8);
               font-weight: normal;
               border: 1px solid rgba(39, 133, 201, 0.3);
            }

            .btn-container1 .btn:hover {
                background: rgba(39, 133, 201, 0.2);
                color: #004e73;
                box-shadow: inset 0 -1em 1em rgba(39, 133, 201, 0.3);
            }

            .btn {
                display: inline-block;
                margin: 10px;
                padding: 0.7em 2em;
                background: rgba(39, 133, 201, 0.15);
                color: #006798;
                border: 1.5px solid rgba(39, 133, 201, 0.5);
                border-radius: 3px;
                font-size: 16px;
                text-decoration: none;
                transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
                cursor: pointer;
                box-shadow: inset 0 -1em 1em rgba(39, 133, 201, 0.3);
                font-weight: bold;
            }

            .btn:hover {
                background: rgba(39, 133, 201, 0.3);
                color: #004e73;
                box-shadow: inset 0 -1em 1em rgba(39, 133, 201, 0.5);
            }

            .logo-header {
                margin: 20px auto;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .logo-header img {
                width: 50px;
                margin-right: 10px;
                border-radius: 50px;
                box-shadow: 0px 5px 5px rgba(39, 133, 201, 0.9);
                transition: transform 0.3s ease;
            }

            .logo-header img:hover {
                transform: scale(1.1);
            }
        .footer {
            margin-top: 40px;
            font-size: 12px;
            color: #a1aabf;
            width: 98%;
        }

.footer a {
    color: rgb(0, 103, 152); /* Use rgb for opaque color */
    text-decoration: underline;
    transition: color 0.3s ease; /* Smooth color transition */
}

.footer a:hover {
    color: rgba(0, 103, 152, 0.5); /* Semi-transparent on hover */
}

.footer a:active {
    color: rgb(0, 103, 152); /* Maintain opaque color when active */
}

/* Optional: Add focus state for accessibility */
.footer a:focus {
    outline: 2px solid rgba(0, 103, 152, 0.5);
    outline-offset: 2px;
}


            @media (max-width: 600px) {
                body {
                    justify-content: center; /* Center content vertically on small screens */
                }

                .container {
                    padding: 3px;
                    max-width: 92%;
                    margin: 10px auto;
                }

                .header h1 {
                    font-size: 1em;
                }

                .description {
                    font-size: 0.8em;
                    padding: 5px;
                }
            }
