body {
  font-family: "Georgia", serif;
  margin: 0;
  background-color: #f5f5f5;
}

nav {
  background-color: #333;
  overflow: hidden;
  padding: 15px 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

nav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 17px;
  transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin-top: 45px;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.dropdown:hover .dropbtn {
  background-color: #ddd;
  color: black;
}

.column {
  width: 100%;
  display: block;
  flex: 1;
}

header {
  color: white;
  text-align: center;
  padding: 100px 20px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  position: relative;
  background: url("images/ContactH.jpg") no-repeat center center/cover;
}

header h1 {
  font-size: 50px;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  position: relative;
}

header h1::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: #ffd149;
  margin: 10px auto 0;
}

.content {
  padding: 20px;
  max-width: 1000px;
  margin: auto;
}

.contact-section {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
  font-size: 30px;
  color: #333;
  border-bottom: 2px solid #ffd149;
  display: inline-block;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  font-size: 16px;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  font-size: 18px;
  padding: 10px;
  color: white;
  background-color: #333;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #555;
}

.icons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.icons a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-size: 24px;
  transition: color 0.3s;
}

.icons a:hover {
  color: #ffd149;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  position: relative;
  bottom: 0;
  width: 100%;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 43px;
}
