    *, *::before, *::after {
  box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    background-color: #000000;
    color: #fdfde1;
    overflow-x: hidden;
  }

  .main-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1240px;
    margin: 150px auto 80px auto;
    padding: 0 20px;
  }

  .column1,
  .column2 {
    width: 100%;
  }

  .sec-title {
    font-weight: 700;
    font-size: 4.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .sec-text,
  .sec-Subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.8;
  }

  @media (max-width: 768px) {
  .sec-title {
    font-size: 2.8rem; /* smaller on tablets/mobile */
  }
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .form-input,
  textarea {
    background-color: #000000;
    color: #fdfde1;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid #fdfde1;
    border-radius: 1000px;
    padding: 15px 20px;
    width: 100%;
  }

  textarea {
    border-radius: 20px;
    height: 8rem;
    resize: none;
  }


    ::placeholder {
    color: #fdfde1;
    opacity: 0.8;
  }

    .form-input:focus,
  textarea:focus {
    border-color: #bff747;
    outline: none;
  }

  .form-input:active,
  textarea:active {
    border-color: #bff747;
    outline: none;
  }

  .form-input:hover,
  textarea:hover {
    border-color: #bff747;
    outline: none;
  }

    .send-msg {
        position: relative;
        font-family: 'Manrope';
        font-size: 1.1rem;
        font-weight: 600;
        background-color: white;
        border: 2px solid #000000;
        border-radius: 1000px;
        padding: 20 20 20 25;
        width: 100%;
        height: 4.5em;
        margin: 15px 0px 0px 0px;
        overflow: hidden;
        z-index: 1;
    }

    .send-msg::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 4px;
    width: 100%;
    height: 100%;
    background-color: #bff747;
    border: 2px solid #000000;
    border-radius: 1000px;
    z-index: -1;
}

.send-msg:hover::before {
    background-color: #bff747;
}

.send-msg:active::before {
    bottom: 1;
    background-color: #00ffc8;
}

@media (min-width: 768px) {
    .main-container {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }

    .column1 {
      flex: 1 1 55%;
    }

    .column2 {
      flex: 1 1 40%;
    }
  }