body * {
    font-family: 'Bebas Neue', sans-serif !important;
}
    .bebas-neue-regular {
        font-family: 'Bebas Neue', sans-serif;
    }


/* ========================
    nav Styles
======================== */
.container {
    width: 90%;
    margin: 0 auto;
}

.navbar {
    background-color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #001f3f;
    text-decoration: none;
    transition: color 0.3s;
}

.logo:hover {
    color: #001f3f;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #001f3f;
    transition: all 0.3s;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #001f3f;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-link:hover {
    color: white;
    background-color: #001f3f;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .menu-toggle {
         display: flex;
    }

    .nav-links {
         display: none;
         flex-direction: column;
         position: absolute;
         top: 60px;
         right: 20px;
         background-color: black;
         box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
         padding: 10px;
         border-radius: 8px;
    }

    .nav-links.active {
         display: flex;
    }

    .nav-link {
         color: white;
         padding: 15px 0;
         border-top: 1px solid #f4f4f4;
    }
}

/* ========================
    Contact Styles
======================== */
        
        #contact {
            padding: 60px 0;
            background-color: #f9f9f9;
        }

        #contact .container {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        #contact h2 {
            margin-bottom: 20px;
            font-size: 2rem;
            color: #001f3f;
        }

        .form-group {
            margin-bottom: 15px;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        button[type="submit"] {
            background-color: #001f3f;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        button[type="submit"]:hover {
            background-color: #0056b3;
        }

        #location {
            padding: 60px 0;
            background-color: #ffffff;
        }

        #location .container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        #location h2 {
            margin-bottom: 20px;
            font-size: 2rem;
            color: #001f3f;
        }

        #location p {
            margin-bottom: 20px;
            font-size: 1.2rem;
            color: #333333;
        }

        #location iframe {
            width: 100%;
            height: 450px;
            border: none;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
