body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  color: #222;
}

.project-container {
  max-width: 1000px;
  margin: 40px auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.project-text {
  flex: 1;
  min-width: 280px;
}

.project-text h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.project-text p {
  font-size: 1rem;
  line-height: 1.6;
}

.project-image {
  flex: 1;
  text-align: right;
  min-width: 200px;
  margin-top: 20px;
}

.project-image2 {
  flex: 1;
  text-align: right;
  min-width: 200px;
  margin-top: 20px;
}

.project-image img {
  max-width: 250px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-image2 img {
  max-width: 190px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-description {
  margin-top: 40px;
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .project-header {
    flex-direction: column;
    text-align: center;
  }

  .project-image {
    text-align: center;
    margin-top: 20px;
  }
}

.project-large-image {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 100%;
  width: 800px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}