

.project_container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 20vh auto;
  max-width: 1200px; /* Limiting container width */
}

.left-content{
  /* width: 60%; */
  padding-right: 20px;
  color: #333;
}

.left-content  img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Adding subtle shadow to image */
  max-width: 400px; /* Set maximum width for image */
  margin: 10% 0;
}

.right-content{
  width: 70%;
  color: #333;
  padding: 20px;
}
h1 {
  font-size: 30px;
  color: #b0753e;
  margin-bottom: 15px;
  font-weight: bold;
}

h2 {
  font-size: 22px;
  color: #333;
  font-weight: bold;
  margin-bottom: 15px;
}

p, ul {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

ul {
  padding-left: 20px;
  list-style-type: none;
}

ul li {
  margin-bottom: 10px;
}

@media (max-width: 1000px) {
  .project_container {
      flex-direction: column;
      margin: 0 auto;
  }

  .left-content, .right-content {
      width: 100%;
      margin: 0;
      margin-bottom: 30px;
  }
  .left-content {
    padding-right: 0;
  }
  .left-content img {
      margin: 20px 0;
      max-width: 100%; /* Adjust image width to full on mobile */
  }
}
