/* Apply Futura font-family to the entire page */
body {
    font-family: 'futura-pt', sans-serif;
}

/* Apply Futura font-family to all heading elements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'futura-pt', sans-serif;
}

/* Apply Futura font-family to paragraphs */
p {
    font-family: 'futura-pt', sans-serif;
}

/* Apply Futura font-family to fallback elements */
.fallback-font {
    font-family: 'futura-pt', Arial, sans-serif;
}

/* Apply Futura font-family to forms and form elements */
form {
    font-family: 'futura-pt', sans-serif;
    margin-top: 20px;
}

input, textarea, select {
    font-family: 'futura-pt', sans-serif;
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}

input[type="order-now"], button {
    font-family: 'futura-pt', sans-serif;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

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

/* Apply Futura font-family to progress bars */
.progress-container {
    width: 100%;
    background-color: #ccc;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 20px;
}

.progress-bar {
    height: 25px;
    width: 0;
    background-color: #007bff;
    text-align: center;
    color: white;
    line-height: 25px;
    border-radius: 4px;
    font-family: 'futura-pt', sans-serif;
}

/* Apply Futura font-family to navigation tabs */
.nav-tabs {
    font-family: 'futura-pt', sans-serif;
}

.nav-tabs a {
    font-family: 'futura-pt', sans-serif;
    padding: 10px 15px;
    display: block;
    color: #007bff;
    text-decoration: none;
}

.nav-tabs a:hover {
    background-color: #e9ecef;
    border-radius: 4px;
}

/* Apply Futura font-family to hamburger menu */
.hamburger-menu {
    font-family: 'futura-pt', sans-serif;
}

.hamburger-menu button {
    font-family: 'futura-pt', sans-serif;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-menu button span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #007bff;
}
