.contact-bottom-image {
  position: relative;
  margin-top: -100px;
  z-index: -1;
}
.contact-bottom-image img {
  width: 100%;
  height: auto;
}
.contact-us-section {
  margin-top: 100px;
}
.contact-us-wrapper {
  display: flex;
}

.left-section {
  flex: 1;
  max-width: 500px;
}

.right-section {
  background-color: #ededee;
  padding: 60px 50px;
  flex: 1;
  border-radius: 16px;
}

.main-title {
  line-height: 74px;
  margin-bottom: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.contact-icon {
  width: 30px;
  height: 30px;
  margin-top: 2px;
  flex-shrink: 0;
}
.email-green {
  align-items: center;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-details span {
  color: #000;
  font-size: 16px;
  line-height: 100%;
}

.direction-link {
  color: #007bff;
  text-decoration: none;
  font-size: 16px;
}

.direction-link:hover {
  text-decoration: underline;
}

.form-section h2 {
  margin-bottom: 20px;
}

.form-description {
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 40px;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.form-group.full-width {
  flex: 1;
}

label {
  font-size: 16px;
  color: #535353;
  margin-bottom: 8px;
}

input,
textarea {
  padding: 15px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  background-color: white;
  color: #808080;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #93d500;
}

input::placeholder,
textarea::placeholder {
  color: #999;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  color: #000;
  border: 1px solid #000;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 10px;
  background: #ededee;
}

.submit-btn:hover {
  background-color: #333;
  color: white;
}
@media (max-width: 1250px) {
  .footer-section {
    margin-top: -80px;
  }
}
@media (max-width: 900px) {
  .footer-section {
    margin-top: -60px;
  }
}
@media (max-width: 768px) {
  .footer-section {
    margin-top: -40px;
  }
  .contact-us-wrapper {
    flex-direction: column;
  }

  .left-section,
  .right-section {
    padding: 40px 30px;
  }

  .main-title {
    margin-bottom: 40px;
    line-height: 54px;
  }

  .form-section h2 {
    font-size: 2rem;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  .contact-us-section {
    margin-top: 15px;
  }
}

@media (max-width: 500px) {
  .left-section,
  .right-section {
    padding: 30px 20px;
  }

  .main-title {
    line-height: 44px;
  }

  .form-section h2 {
    font-size: 1.8rem;
  }
  .contact-us-wrapper {
    flex-direction: column;
    padding-bottom: 90px;
  }
  .footer-section {
    margin-top: -28px;
  }
}
