  .container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0px 20px; */
  }


  .contact-section {
    padding: 0px 20px;
    border-radius: 8px;
  }

  .contact-section p {
    margin-bottom: 20px;
    font-weight: 400;
  }

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

  .contact-info {
    flex: 1;
    /* background-color: #d3d1ff76; */
    background-color: #3f87cf20;
    position: relative;
    overflow: hidden;
    /* background-image: linear-gradient(to right bottom, #535fab, #5c68b4, #6471bd, #6d7ac6, #7683cf); */
    /* color: #fff; */
    padding: 20px;
    border-radius: 8px;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
    align-self: flex-start;
  }

  .contact-info h3 {
    font-size: 16px;
    margin-top: 5px;
    font-weight: 600;
    /* margin-bottom: 10px; */
  }

  .contact-info p {
    /* color: #ffffff80; */
    margin-top: 8px;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .contact-info i {
    margin-right: 5px
  }

  .contact-info ul {
    list-style: none;
    padding-left: 0px
  }

  .contact-info li {
    margin-bottom: 10px;
  }

  .contact-form {
    flex: 2;
    /* background-color: #fff; */
    /* background-color: var(--background-color-alt); */
    /* background-color: #ececec; */
    /* padding: 20px; */
    border-radius: 8px;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
  }

  .contact-form .form-group {
    margin-bottom: 15px;
  }

  .contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
    padding: 12px;
    border: 0px solid #ddd;
    background-color: var(--grey);
    border-radius: 4px;
    font-size: 1rem;
  }

  .contact-form input:focus,
  .contact-form textarea:focus,
  .contact-form select:focus {
    outline: none;
    background-color: var(--greyDarker);
  }

  .contact-form textarea {
    resize: none;
  }

  .contact-form .btn {
    background-color: var(--primary-blue);
    /* background-color: #008cd7; */
    color: white;
    padding: 10px 25px;
    margin-top: 25px;
    border: none;
    /* border-radius: 4px; */
    font-size: 1rem;
    cursor: pointer;
    /* transition: background-color 0.3s ease; */
  }

  .contact-form .btn:hover {
    background-color: var(--primary-blue-hover);
  }


  /* Form Section 1 Flexbox */
  .form-section-1 {
    flex-direction: column;
    gap: 15px;
  }

  .form-section-1 .form-group {
    flex: 1 1 calc(33.33% - 15px);
  }


  /* .circle-div {
    background-image: linear-gradient(to right bottom, #000000, #202020, #393939, #555555, #727272);    height: 250px;
    width: 250px;
    border-radius: 150px;
    position: absolute;
    bottom: -50px;
    right: -50px;
  } */


  /* Style select wrapper */
  .form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    /* background-color: #fff; */
    /* border: 1px solid #ccc; */
    padding: 12px 40px 12px 15px;
    font-size: 16px;
    border-radius: 4px;
    width: 100%;
    color: #222;
    font-family: inherit;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23222' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    cursor: pointer;
  }

  /* Ensure it doesn't overflow container */
  .form-group {
    position: relative;
  }

  /* Optional: fix arrow placement on Safari */
  select::-ms-expand {
    display: none;
  }

  select {
    -webkit-text-fill-color: #222;
  }

  .form-group select:focus {
    outline: none;
    border-color: #617cff;
    box-shadow: 0 0 0 2px rgba(97, 124, 255, 0.2);
  }


  @media only screen and (min-width: 39em) {


    .contact-section {
      /* background-color: red; */
      flex-direction: column;
    }

    .contact-container {
      gap: 25px;
    }

    .container {
      padding: 0px 20px;
    }

    .contact-info h3 {
      font-size: 18px;
    }


  }

  @media only screen and (min-width: 48em) {
    .form-section-1 {
      flex-direction: row;
      display: flex;
      flex-wrap: wrap;
      /* background-color: red; */
    }

    .contact-section {
      /* background-color: blue; */
    }

    .contact-container {
      flex-direction: row;
    }
  }

  @media only screen and (min-width: 48em) {

    .contact-section {
      /* background-color: green; */
    }
  }

  @media only screen and (min-width: 72.5em) {

    .contact-section {
      /* background-color: yellow; */
    }
  }

  @media only screen and (max-width: 47.99em) {
    .contact-info {
      align-self: stretch;
    }
  }
