.headerBg {
  background-color: white;
  margin-top: 0;
  position: inherit;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.headerBg .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0.4rem 0;
}

.headerBg nav a {
  color: #f6966f !important;
}

.addresses .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1rem;
  flex-wrap: wrap;
}

.addressWrapper {
  margin: 3rem 0;
  flex: 1;
}

@media (max-width: 980px) {
  .addressWrapper {
    margin: 0;
  }

  .addressWrapper:last-of-type {
    margin-bottom: 2rem;
  }
}

.infoWrapper {
  background-color: #00307e;
  padding: 3rem;
  color: #fff;
  max-width: max-content;
}

.infoWrapper h4 {
  font-size: 18px;
  margin-bottom: 1rem;
}

.infoWrapper p {
  font-size: 14px;
  margin-bottom: 0.2rem;
}

.contactForm {
  margin: 3rem 0;
}

.contactWrapper {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  width: 100%;
}

.contactForm h2 {
  color: #00307e;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contactForm form {
  width: 100%;
}

.contactForm .container form div {
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
}

.contactForm form label {
  margin-bottom: 0.5rem;
}

.contactForm form input {
  padding: 5px;
  border: 2px solid #e6e6e6;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  outline: none;
  background-color: transparent;
}

.contactForm form textarea {
  border: 2px solid #e6e6e6;
  padding: 5px;
  outline: none;
  background-color: transparent;
}

.kvkkText {
  font-size: 11px;
  line-height: 24px;
}

.contactForm form button {
  background-color: #00a1bc;
  cursor: pointer;
  border: 2px solid #00a1bc;
  color: #fff;
  font-size: 13px;
  padding: 10px 20px;
  margin-top: 1rem;
  transition: all 0.3s ease-in-out;
}

.contactForm form button:hover {
  background-color: #fff;
  color: #00a1bc;
}

.contactTextWrapper {
  max-width: 35%;
  margin-top: 3.75rem;
}

.contactFormWrapper {
  flex: 1;
}

.contactTextWrapper p {
  font-size: 0.8rem;
  margin-bottom: 1rem;
  line-height: 24px;
}

.contactTextWrapper p:last-of-type {
  margin-top: 1rem;
  margin-bottom: 0;
}

.contactTextWrapper hr {
  margin: 1rem 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
  .contactWrapper {
    flex-direction: column;
  }
  .contactTextWrapper {
    max-width: 100%;
  }
  .contactFormWrapper {
    max-width: 100%;
  }
}
