* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.navbar {
    z-index: 10 !important;
    position: fixed;
    width: 100%;
    box-shadow: 2px 1px 5px #bfbfbf;
}

form button {
    background-color: rgb(7, 96, 43) !important;
    color: #fff !important;
    border-radius: 30px !important;
    padding: 10px 20px !important;
}

.nav-item a {
    padding: 0px 20px !important;
    font-weight: 500;
}

.banner {
    height: 90vh;
    align-items: center;
    justify-content: center;
}

.banner-left {
    align-items: center;
    justify-content: center;
    padding: 100px !important;
    line-height: 40px;
}

.banner-left p {
    font-size: 20px;
}

.banner-left button {
    background-color: rgb(12, 109, 50);
    color: #fff;
    font-weight: 600;
}

.navbar-brand {
    color: rgb(12, 109, 50);
    font-weight: 600;
    font-size: 25px;
}

.banner-right img {
    border-radius: 30px;
    height: 500px;
}

.box {
    align-items: center;
    padding: 20px;
}

.box-inner {
    background-color: #eaeaea;
    padding: 40px !important;
    border: 20px solid #fff;
    border-radius: 30px;
}

.footer {
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.footer img {
    width: 100px;
    /* Adjust logo size */
    height: auto;
}

.footer .links {
    display: flex;
    gap: 15px;
}

.footer a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.footer a:hover {
    text-decoration: underline;
}