.history-section {
  background-color: #000;
  padding-bottom: 40px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.history-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

.history-title {
  font-family: 'Avenir Next W1G', sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
}

.history-subtitle {
  font-family: 'Avenir Next W1G', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #fff;
}

.history-image-wrapper {
  margin: 35px 0 30px;
  display: flex;
  justify-content: center;
}

.history-image {
  width: 343px;
  height: 343px;
  object-fit: cover;
  border-radius: 50%;
}

.history-heading {
  display: flex;
  justify-content: center;
  font-family: 'Avenir Next W1G', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  text-align: left;
  margin-bottom: 30px;
}

.history-content {
  max-width: 650px;
  margin: 0 auto 100px;
  text-align: left;
}

.history-content p {
  font-family: 'Avenir Next W1G', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.history-note {
  font-family: 'Avenir Next W1G', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .history-section {
    padding-bottom: 30px;
  }

  .history-container {
    max-width: 960px;
  }

  .history-title {
    font-size: 32px;
  }

  .history-subtitle {
    font-size: 20px;
  }

  .history-heading {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .history-section {
    min-height: auto;
    padding: 60px 0 30px;
  }

  .history-container {
    padding: 0 20px;
  }

  .history-title {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .history-subtitle {
    font-size: 18px;
  }

  .history-image-wrapper {
    margin: 30px 0 25px;
  }

  .history-image {
    width: 280px;
    height: 280px;
  }

  .history-heading {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .history-content {
    max-width: 100%;
    margin: 0 auto 60px;
  }

  .history-content p {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .history-note {
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .history-section {
    padding: 40px 0 25px;
  }

  .history-container {
    padding: 0 15px;
  }

  .history-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .history-subtitle {
    font-size: 16px;
  }

  .history-image-wrapper {
    margin: 25px 0 20px;
  }

  .history-image {
    width: 220px;
    height: 220px;
  }

  .history-heading {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .history-content {
    margin: 0 auto 40px;
  }

  .history-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .history-note {
    font-size: 14px;
  }
}
