body {
    margin: 0;
    font-family: Arial, sans-serif;
}
hr {
    border: none;
    border-top: 1px solid #777;
    width: 80%;
}
a:link {
    text-decoration :none;
    color: #fff;
}
a:visited {
    color: #fff;
    text-decoration :none
}
.top-warning {
    background-color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 16px;
}
.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #ffe610;
    padding: 15px 0;
    color: #000;
    margin: 0 auto;
}
.navbar-logo img {
    height: auto;
    max-width: 7vh;
}
.navbar-nav {
    display: flex;
    gap: 13vh;
}
.navbar-nav a {
    color: #000;
    text-decoration: none;
}
.navbar-nav a:hover {
    color: #ff0000;
}
.navbar-nav a.active {
    color: #ffe610;
}
.navbar-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
.banner {
    width: 100%;
    display: block;
}
.footer {
    background-color: #000;
    color: #fff;
    height: auto;
    padding: 100px 0;
    display: flex;
    justify-content: space-between;
    align-content: space-around;
    flex-wrap: wrap;
    flex-direction: column;
}
.footer-content {
    margin: 0 auto;
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.footer-bottom {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 10px;
}
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #00000042;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.back-to-top:hover {
    background-color: #00000087;
}
.full-width-video {
    width: 100%;
    height: auto;
}
/* Banner Section */
.banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    display: block;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    text-align:left;
    color: white;
}

.banner-text h1 {
    font-size: 4vw;
    margin-bottom: 10px;
}

.banner-text h2 {
    font-size: 3vw;
    font-weight: 100;
    margin-bottom: 10px;
}

.banner-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #000;
    text-decoration: none;
    font-size: 1.2vw;
    border-radius: 50px;
    transition: background-color 0.3s;
    border-style: solid;
    
}

.banner-button:hover {
    background-color: #ffe610;
}
@media (max-width: 768px) {
    .navbar {
        width: 100%;
    }
    .navbar-nav {
        display: none;
        flex-direction: column;
        background-color: #ffe610;
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        padding: 10%;
        gap: 25px;
    }
    .top-warning {
        padding: 10px;
        font-size: 12px;
    }
    .navbar-toggle {
        display: block;
    }
    .footer-content {
        flex-direction: column;
        text-align: left;
        margin: 0;
        width: auto;
        gap: 0px;
    }
    .footer {
        padding: 20px 0;
    }
        .banner-text h1 {
        font-size: 1.5rem;
    }

    .banner-text h2 {
        font-size: 1rem;
    }

    .banner-button {
        font-size: 1rem;
        padding: 8px 16px;
    }
}