.conatiner_img_title {
  position: relative;
  width: 100%; /* Adjust to your container's width */
  height: 50%; /* Adjust to your needs */
  
}

.title_img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.conatiner_img_title h2 {
  position: absolute;
  top: 35%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Adjust centering */
  color: rgb(4, 86, 30);
  font-size: 55px; /* Adjust text size as needed */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Make the text readable */
  font-weight: bold;
  text-align: center;
}


.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 20px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.image-container2 {
  flex: 1;
  min-width: 300px;
}

.image-container2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  flex: 2;
  padding: 20px 30px;
}

.content h2 {
  font-size: 35px;
  color: #333;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.content ul {
  list-style: none; /* Remove default bullet style */
  margin: 15px 0 15px 20px;
  color: #555;
  padding: 0;
}

.content ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 30px; /* Add space for the custom bullet */
}

.content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4.5px;
  width: 10px;
  height: 10px;
  background-color: black;
  border-radius: 50%; /* Make the bullet round */
}


  .content h3 {
    font-size: 20px;
    color: #282f04;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }


  .container_cards {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    text-align: center;
  }

  h1 {
    font-size: 32px;
    color: #222;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  }

  .cards1 {
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .card1 {

    background-color: #baf3ec92;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    padding: 20px;
    text-align: left;
    transition: transform 0.2s ease-in-out;
  }

  .card1:hover {
    transform: scale(1.05);
  }

  .card-title1 {
    font-size: 18px;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 10px;
  }

  .card-content1 {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .cards1 {
      flex-direction: column;
      align-items: center;
    }

    .card1 {
      width: 90%;
    }
  }