/* style/about-company-history.css */
.page-about-company-history {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-about-company-history__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-about-company-history__hero {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-about-company-history__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for emphasis */
  font-weight: bold;
}

.page-about-company-history__subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  color: #e0e0e0;
}

.page-about-company-history__timeline {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-about-company-history__timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}

.page-about-company-history__timeline-item:last-child {
  margin-bottom: 0;
}

.page-about-company-history__timeline-item--reverse {
  flex-direction: row-reverse;
}

.page-about-company-history__timeline-content {
  flex: 1;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about-company-history__timeline-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-about-company-history__timeline-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-about-company-history__timeline-year {
  font-size: 2.2em;
  color: #003366;
  margin-bottom: 15px;
  border-bottom: 3px solid #FFCC00;
  padding-bottom: 10px;
  display: inline-block;
}

.page-about-company-history__timeline-content p {
  font-size: 1.1em;
  color: #555;
}

.page-about-company-history__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-about-company-history__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-about-company-history__btn--primary:hover {
  background-color: #e6b800;
  color: #002244;
}

.page-about-company-history__btn--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #003366;
  margin-left: 15px;
}

.page-about-company-history__btn--secondary:hover {
  background-color: #002244;
  color: #ffe066;
}

.page-about-company-history__cta {
  background-color: #003366;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-about-company-history__cta-title {
  font-size: 2.8em;
  color: #FFCC00;
  margin-bottom: 20px;
}

.page-about-company-history__cta-text {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-about-company-history__cta-buttons .page-about-company-history__btn {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about-company-history__timeline-item {
    flex-direction: column;
    text-align: center;
  }

  .page-about-company-history__timeline-item--reverse {
    flex-direction: column;
  }

  .page-about-company-history__timeline-image-wrapper {
    margin-top: 30px;
  }

  .page-about-company-history__timeline-content {
    padding: 15px;
  }

  .page-about-company-history__timeline-year {
    font-size: 1.8em;
  }

  .page-about-company-history__title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-about-company-history__hero {
    padding: 60px 0;
  }

  .page-about-company-history__title {
    font-size: 2em;
  }

  .page-about-company-history__subtitle {
    font-size: 1em;
  }

  .page-about-company-history__timeline {
    padding: 40px 0;
  }

  .page-about-company-history__timeline-item {
    margin-bottom: 40px;
  }

  .page-about-company-history__timeline-year {
    font-size: 1.6em;
  }

  .page-about-company-history__cta {
    padding: 60px 0;
  }

  .page-about-company-history__cta-title {
    font-size: 2.2em;
  }

  .page-about-company-history__cta-text {
    font-size: 1em;
  }

  .page-about-company-history__cta-buttons .page-about-company-history__btn {
    display: block;
    margin: 15px auto;
  }

  .page-about-company-history__btn--secondary {
    margin-left: 0;
  }
}