.contact-s1 {
    width: 100%;
    height: 100%;
    padding-block: 60px;
}

.contact-s1-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px;
    gap: 80px;
  }

  /* Left column */
  .contact-left {
    flex: 1;
  }

  .contact-contact-title {
    font-size: 70px;
    font-weight: 400;
    margin-bottom: 10px;
    color: rgba(48, 48, 48, 1);
  }

  .contact-subtitle {
    font-size: 18px;
    color: #005bbb;
    display: flex;
    align-items: center;
  }

  .contact-subtitle::before {
    content: "◆";
    color: #005bbb;
    margin-right: 8px;
    font-size: 18px;
  }

  /* Right column */
  .contact-form {
    flex: 1;
    /* background-color: black; */
    color: rgba(48, 48, 48, 1);
  }

  label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
  }

  label span {
    color: red;
    margin-left: 4px;
  }

  input[type="text"], input[type="email"], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(229, 231, 235, 1);
    margin-bottom: 20px;
    font-size: 14px;
    border-radius: 2px;
    box-sizing: border-box;
  }

  textarea {
    height: 120px;
    resize: none;
  }

  input, select, textarea {
    background-color: white;
    color: black;
  }

  /* Checkbox */
  .checkbox-group {
    margin-bottom: 20px;
  }

  .checkbox-group label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: rgba(48, 48, 48, 1);
  }

  .checkbox-group input {
    margin-right: 8px;
  }

  .checkbox-group a {
    color: #005bbb;
    text-decoration: underline;
    /* text-decoration: none; */
  }

  /* Submit button */
  .submit-btn {
    background-color: #005bbb;
    color: white;
    border: none;
    padding: 14px;
    width: 100%;
    font-size: 16px;
    border-radius: 2px;
    cursor: pointer;
  }

  .submit-btn:hover {
    background-color: #004899;
  }