.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
}
.contact-section .contact-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1 1 calc(50% - 20px);
  /* max-width: calc(50% - 20px); */
  min-width: 320px;
}
.contact-section .contact-content .contact-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-section .contact-content .contact-header h2 {
  font-size: 54px;
  font-weight: 700;
  text-align: left;
  margin: 0;
}
.contact-section .contact-content .contact-header h2 .highlight-green {
  color: #25a550;
}
.contact-section .contact-content .contact-header h2 .highlight-blue {
  color: #045182;
}
.contact-section .contact-content .contact-header p {
  font-size: 14px;
  font-weight: 600;
  color: #045182;
  max-width: 500px;
}
.contact-section .contact-content .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-section .contact-content .contact-form input, .contact-section .contact-content .contact-form textarea {
  padding: 12px 20px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  border-radius: 6px;
  outline: none;
  font-family: inherit;
  width: 100%;
}
.contact-section .contact-content .contact-form input::-moz-placeholder, .contact-section .contact-content .contact-form textarea::-moz-placeholder {
  color: #828282;
  opacity: 1; /* Ensure consistent opacity across browsers */
}
.contact-section .contact-content .contact-form input::placeholder, .contact-section .contact-content .contact-form textarea::placeholder {
  color: #828282;
  opacity: 1; /* Ensure consistent opacity across browsers */
}
.contact-section .contact-content .contact-form textarea {
  padding: 15px 20px;
  min-height: 120px;
  resize: vertical;
}
.contact-section .contact-content .contact-form textarea::-moz-placeholder {
  position: relative;
  top: 1px; /* Fine-tune vertical alignment */
}
.contact-section .contact-content .contact-form textarea::placeholder {
  position: relative;
  top: 1px; /* Fine-tune vertical alignment */
}
.contact-section .contact-content .contact-form button {
  padding: 12px 24px;
  background: #045182;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.contact-section .contact-content .contact-form button:hover {
  background: #03426a;
}
.contact-section .contact-content .contact-info {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.contact-section .contact-content .contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-section .contact-content .contact-info .info-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.contact-section .contact-content .contact-info .info-item p {
  font-size: 13px;
  margin: 0;
}
.contact-section .contact-content .contact-info .info-item p .label {
  font-weight: 600;
  color: #000;
}
.contact-section .contact-content .contact-info .info-item p .value {
  font-weight: 700;
  color: #25a550;
}
.contact-section .contact-image {
  flex: 1 1 calc(50% - 20px);
  max-width: calc(50% - 20px);
  min-width: 320px;
  height: 100%;
  display: flex;
}
.contact-section .contact-image iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 12px;
}

.form-status {
  margin-top: 15px;
  padding: 10px;
  border-radius: 4px;
  display: none;
}

.form-status.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Tablet responsive styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .contact-section {
    padding: 70px 30px;
    gap: 30px;
    width: 100%;
    flex-wrap: wrap;
  }

  .contact-section .contact-content .contact-header h2 {
    font-size: 42px;
  }

  .contact-section .contact-image {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
  }
}
/* Mobile responsive styles */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px;
    gap: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .contact-section .contact-content {
    flex: none;
    width: 90%;
    gap: 30px;
    max-width: 500px;
  }

  .contact-section .contact-content .contact-header {
    text-align: center;
    align-items: center;
  }

  .contact-section .contact-content .contact-header h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
  }

  .contact-section .contact-content .contact-header p {
    text-align: center;
    max-width: 100%;
    font-size: 16px;
    margin: 0 auto;
  }

  .contact-section .contact-content .contact-info {
    display: flex;
    gap: 20px;
    flex-direction: column !important;
    align-items: center;
    width: 100%;
    justify-content: center;
  }

  .contact-section .contact-content .contact-info .info-item {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .contact-section .contact-content .contact-form {
    gap: 18px;
    width: 100%;
  }

  .contact-section .contact-content .contact-form input,
  .contact-section .contact-content .contact-form textarea {
    padding: 16px 20px;
    font-size: 16px;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-section .contact-content .contact-form textarea {
    min-height: 140px;
    resize: vertical;
  }

  .contact-section .contact-content .contact-form button {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-section .contact-image {
    flex: none;
    width: 90%;
    max-width: 500px;
    order: 1;
    height: 320px;
  }

  .contact-section .contact-image iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 15px;
    gap: 25px;
  }

  .contact-section .contact-content {
    width: 95%;
    gap: 25px;
  }

  .contact-section .contact-content .contact-header h2 {
    font-size: 28px;
  }

  .contact-section .contact-content .contact-header p {
    font-size: 14px;
  }

  .contact-section .contact-content .contact-form {
    gap: 16px;
  }

  .contact-section .contact-content .contact-form input,
  .contact-section .contact-content .contact-form textarea {
    padding: 14px 18px;
    font-size: 15px;
  }

  .contact-section .contact-content .contact-form textarea {
    min-height: 120px;
  }

  .contact-section .contact-content .contact-form button {
    padding: 14px 28px;
    font-size: 16px;
  }

  .contact-section .contact-image {
    max-width: 250px;
  }
}
/* # sourceMappingURL=contact.css.map */