

/* About Section */
.about-section2 {
  display: flex;
  flex-wrap: wrap;;
  align-items: center;
  padding: 20px;
  background-color: #fff;
}

.desine {
  width: 100%;
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: bold ;
  color: #2c3e50;
  margin-bottom: 20px;
}

.mess {
  width: 100%;
  font-family: Georgia, 'Times New Roman', Times, serif;
  text-align: left;
  margin-left: 20px;
  font-size: 24px;
  color: #007b83;
}

.about-content2 {
  flex: 1;
;
  text-align: justify;
  min-width: 300px;
  max-width: 600px;
  padding: 20px;
}

.about-content2 h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #223344;
  font-family: Serif;
  text-align: center;
}

.about-content2 p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.about-content2 .highlight {
  color: #007b83;
  font-weight: bold;
}

.about-image2 {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.about-image2 img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}



/* Responsive Design */
@media (max-width: 768px) {
  .about-section2 {
    flex-direction: column;
    padding: 10px;
  }

  .about-content2 {
    max-width: 100%;
    padding: 10px;
  }

  .about-image2 img {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

}

@media (max-width: 480px) {
  .about-content2 h2 {
    font-size: 1.5rem;
  }

  .about-content2 p {
    font-size: 1rem;
  }

}

