/* History Section */
.history-section {
  padding: 90px 45px 100px;
  background: #efeded;
  overflow: hidden;
}

.history-main-title {
  color: var(--title-color);
  font-weight: 400;
  margin-bottom: 0;
}

.history-content {
  padding-right: 20px;
}

.history-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.65;
  margin-bottom: 20px;
  /* text-align: justify; */
}

.history-text:last-child {
  margin-bottom: 0;
}

.history-image {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */ 
  box-shadow: 0 4px 10px rgb(148 148 148);
}

.history-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 991px) {
  .history-section {
    padding: 60px 25px 70px;
  }
  
  .history-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .history-section {
    padding: 50px 15px 60px;
  }
  
  .history-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 575px) {
  .history-section {
    padding: 40px 15px 50px;
  }
}
