/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    text-align: center;
}

/* Navigation Bar */
header {
    background: #003366;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 10px;
    position: relative;
}

nav ul li a {
      border-left: 1px solid #383838;
    color: #ddd;
    font-family: 'Oswald',sans-serif;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    padding: 0 14px;
    text-shadow: 0 1px 1px #000;
    text-transform: uppercase;
    -webkit-transition: all 0.5s;
    -mz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    background: rgb(12, 12, 12);
    color: rgb(255, 255, 255);
    list-style: none;
    padding: 10px;
    min-width: 150px;
}

.dropdown-menu li {
    padding: 5px 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hero Section */
.hero {
    background: url('images/hero.jpg') no-repeat center center/cover;
    color: rgb(15, 15, 15);
    padding: 50px;
}

/* Feedback Form */
.feedback {
    padding: 20px;
    background: white;
    margin: 20px;
}

.feedback form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feedback input, .feedback textarea {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
}

.feedback button {
    padding: 10px 20px;
    background: #003366;
    color: white;
    border: none;
    cursor: pointer;
}

.feedback button:hover {
    background: #0055a5;
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 10px;
    margin-top: 200px;
}







