html {
    position: relative;
    min-height: 100%;
    font-size: 14px !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    color: #1D366A;
    margin-bottom: 60px;
}

.navbar {
    padding: 10px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

a {
    color: #1D366A;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .navbar {
        font-size: 14px;
        padding: 8px 15px;
    }

        .navbar a {
            font-size: 14px;
            margin: 0 10px;
        }

    .btn {
        font-size: 14px;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 12px;
    }

    .navbar {
        font-size: 12px;
        padding: 8px 15px;
    }

        .navbar a {
            font-size: 12px;
            margin: 0 5px;
        }

    .btn {
        font-size: 12px;
        padding: 10px 20px;
    }
}
