* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0b0f16;
  color: white;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 24px;
  background-color: rgba(8, 12, 18, 0.92);
  border-bottom: 2px solid #c1121f;
}

header div {
  margin-left: auto;
}

h1,
h2,
p {
  margin-top: 0;
}

.navbar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 48px;
  padding: 10px 16px;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
}

.button:hover {
  color: #f4b400;
}

.hover-box {
  position: relative;
  display: block;
  width: 72px;
  height: 72px;
  margin-left: 8px;
  background-image: url("images/transparent1 (Custom).png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hover-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/transparent2 (Custom).png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: 0.3s;
}

.hover-box:hover::after {
  opacity: 1;
}

.page-banner {
  background-image: linear-gradient(rgba(8, 12, 18, 0.55), rgba(8, 12, 18, 0.85)), url("images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 24px;
}

.banner-text {
  max-width: 1000px;
  margin: 0 auto;
}

.small-heading {
  margin-bottom: 10px;
  color: #f4b400;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-banner h1 {
  margin-bottom: 16px;
  font-size: 54px;
  text-transform: uppercase;
}

.page-banner p {
  max-width: 650px;
  line-height: 1.7;
}

.form-section {
  padding: 60px 24px;
}

.form-box {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  color: #111827;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.form-box h2 {
  margin-bottom: 20px;
  text-align: center;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

textarea {
  resize: vertical;
}

input[type="submit"] {
  background-color: #c1121f;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #9d0f19;
}

@media (max-width: 800px) {
  header {
    flex-wrap: wrap;
    justify-content: center;
  }

  header div {
    width: 100%;
    margin-left: 0;
  }

  .navbar-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .page-banner h1 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  header {
    padding: 12px 16px;
  }

  .button {
    min-width: auto;
    min-height: 42px;
    padding: 8px 12px;
  }

  .page-banner {
    padding: 70px 16px;
  }

  .form-section {
    padding: 40px 16px;
  }

  .form-box {
    padding: 20px;
  }
}
