.two-column-layout {
  display: flex;
  width: 80%;
  margin: 0 auto;
  gap: 100px;
  box-sizing: border-box;
}

.left-column,
.right-column {
  flex: 1;
}

.contact-column-title {
  color: #001e2c;
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 45px;
  margin-bottom: 24px;
}

.contact-column-description {
  color: #000;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 45px;
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  text-align: left;
}

.contact-info-icon {
  height: 80px;
  width: auto;
}

.contact-info-texts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-subtitle {
  color: #001e2b;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  margin: 0;
}

.contact-info-title {
  color: #1b6585;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
  text-decoration-line: underline;
  margin: 0;
  display: inline-block;
}

.contact-info-divider {
  width: 80%;
  height: 2px;
  margin: 20px 0;
  background-color: #d7dde1;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: 0 auto 0 auto;
  min-width: 60%;
}

.workdays-list {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.workday-row {
  display: flex;
  justify-content: space-between;
  max-width: 400px;
}

.workday-name {
  color: #000;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.workday-hours {
  color: #000;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 991px) {
  .two-column-layout {
    flex-direction: column;
    gap: 32px;
  }

  .contact-info-subtitle {
    font-size: 16px;
    line-height: normal;
  }

  .contact-info-title {
    font-size: 16px;
    line-height: normal;
  }
}

.contact-input {
  position: relative;
  margin-top: 32px;
  width: 100%;
}

.contact-input input {
  width: 100%;
  padding: 20px 12px 8px 12px;
  font-size: 16px;
  font-family: Poppins, sans-serif;
  border: 2px solid #41484d;
  border-radius: 8px;
  background: transparent;
  outline: none;
}

.contact-input label {
  position: absolute;
  left: 12px;
  top: 16px;
  background: white;
  color: #41484d;
  font-size: 16px;
  font-family: Poppins, sans-serif;
  padding: 0 4px;
  transition: all 0.2s ease;
  pointer-events: none;
}

.contact-input input:focus + label,
.contact-input input:not(:placeholder-shown) + label {
  top: -8px;
  left: 8px;
  font-size: 13px;
  font-weight: 500;
  background: white;
}

.contact-input textarea {
  width: 100%;
  padding: 20px 12px 8px 12px;
  font-size: 16px;
  font-family: Poppins, sans-serif;
  border: 2px solid #41484d;
  border-radius: 8px;
  background: transparent;
  outline: none;
  resize: none;
  min-height: 100px;
}

.contact-input textarea:focus + label,
.contact-input textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 8px;
  font-size: 13px;
  font-weight: 500;
  background: white;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.submit-button {
  border: none;
  border-radius: 34px;
  background: #196585;
  display: flex;
  padding: 12px 32px;
  align-items: center;
  gap: 12px;
  color: white;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 24px;
  border-radius: 8px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: white;
  z-index: 10000;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 400px;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-success {
  background-color: #4caf50;
}

.toast-error {
  background-color: #f44336;
}

@media (max-width: 991px) {
  .toast {
    right: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    transform: translateY(-100px);
  }

  .toast.show {
    transform: translateY(0);
  }
}