* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}
header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0px;
}
nav {
  background-color: #fcefc2;
  width: 800px;
  padding: 20px 50px;
  margin-bottom: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
nav ul li {
  list-style: none;
}
nav ul li a {
  text-decoration: none;
  color: #44332c;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bolder;
}
nav ul .logo img {
  width: 60px;
  height: 80px;
  margin: 0px 30px;
}
nav ul .en-flag a img,
.drop img {
  width: 20px;
  height: 15px;
}
.dropdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.dropdown .drop {
  display: flex;
  flex-direction: column;
  gap: 0px;
  position: absolute;
  top: 20px;
  left: -50px;
  display: none;
}
.dropdown .drop li {
  background-color: #fff;
  padding: 10px 50px;
}
.dropdown .drop li:hover {
  background: #000;
}
.drop {
  display: none;
}

.caret-wrapper:hover .drop {
  display: flex;
}

.caret-wrapper {
  position: relative;
}

.drop li {
  padding: 10px 50px;
}

.drop li:hover {
  background: #000;
}
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px 50px;
}
.hamburger i {
  position: absolute;
  right: 10px;
}
.hamburger img {
  width: 60px;
  height: 80px;
}

/* Mobile nav (initially hidden) */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  background-color: #fcefc2;
  transition: right 0.3s ease-in-out;
  z-index: 999;
  padding: 50px 20px;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav ul li a {
  color: #44332c;
  text-decoration: none;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}

.mobile-nav.open {
  right: 0;
}

/* Responsive behavior */
@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  nav {
    padding: 0px 50px;
  }

  .hamburger {
    display: flex;
  }
}
body {
  background-color: #f0f2f5;
}
.section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 20px 100px;
  background-color: #dddde0;
}
.section .contact .logo-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0px;
}
.section .contact .logo-sec img {
  width: 150px;
  height: 200px;
}
.section .contact .logo-sec .contact-card div {
  margin: 30px 0px;
}
.section .contact .logo-sec .contact-card div h3 {
  font-size: 18px;
  color: #44332c;
  font-weight: bolder;
}
.section .contact .logo-sec .contact-card div p {
  font-weight: lighter;
  color: #44332c;
  padding-top: 10px;
}
.section .contact .media {
  margin-top: 100px;
}
.section .contact .media h3 {
  font-size: 18px;
  color: #44332c;
  font-weight: bold;
}
.section .contact .media p {
  color: #44332c;
  font-weight: lighter;
  padding-top: 10px;
  line-height: 30px;
}
.section .contact .imprint {
  margin: 50px 0px;
  display: flex;
  gap: 50px;
}
.section .contact .imprint a {
  color: #44332c;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bolder;
  font-size: 18px;
}
.form-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background-color: #fcefc2;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #44332c;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #44332c;
}

input[type="text"],
input[type="date"],
input[type="file"],
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea {
  resize: vertical;
}

button {
  width: 100%;
  padding: 12px;
  margin-top: 20px;
  background-color: #44332c;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  color: #fcefc2;
  font-weight: bolder;
}

button:hover {
  background-color: #674e43;
}

/* Responsive Design */
@media (max-width: 600px) {
  .form-container {
    padding: 15px;
    /* width: 400px; */
  }

  button {
    font-size: 14px;
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .section {
    flex-direction: column;
    justify-content: center;
    padding: 0px 50px;
  }
  .section .contact .media {
    text-align: center;
    margin-top: 30px;
  }
  .section .contact .imprint {
    justify-content: center;
  }
}
