


  .find-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 80px 100px;
    /* max-width: 1200px; */
  }

  .text-section {
    flex: 1;
    padding: 20px;
  }

  .text-section h1 {
    font-size: 90px;
    margin-bottom: 1rem;
  }

  .text-section p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .text-section a {
    color: #0D4D97;
    text-decoration: none;
    font-weight: bold;
    padding: 18px;
  }

  .image-section {
    flex: 1; /* Allows the section to take up available space */
    display: flex; /* Enables flexbox */
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
}

@media screen and (max-width: 900px) {
    .image-section {
        flex-direction: column; /* Stack content vertically for smaller screens */
        padding: 0px; /* Add padding for better spacing */
    }
    .text-section h1 {
        font-size: 36px;
        margin-bottom: 1rem;
      }
}

.image-section img {
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
  .image-section img {
      max-width: 100%; /* Adjust for mobile view */
  }
}

  .types {
    margin-top: 23%; /* Default for larger screens */
}

@media screen and (max-width: 768px) {
    .types {
      margin-top: 10%;
      width: 100%;
    }
}
.types1 {
  width: 73%; /* Default for larger screens */
}

@media screen and (max-width: 768px) {
  .types1 {
      width: 96%; /* Adjust for mobile view */
  }
}


  @media (max-width: 768px) {
    .find-container {
      flex-direction: column;
      text-align: center;
    }

    .text-section {
      padding: 10px;
    }

    .text-section h1 {
      font-size: 1.5rem;
    }

    .text-section p {
      font-size: 0.9rem;
    }
  }
