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

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

.page-about-company-development-history__hero-section {
  background: linear-gradient(135deg, #FFD700, #000000);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about-company-development-history__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.page-about-company-development-history__hero-title .highlight {
  color: #FFD700;
}

.page-about-company-development-history__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-about-company-development-history__hero-link {
  color: #FFD700;
  text-decoration: none;
}

.page-about-company-development-history__hero-link:hover {
  text-decoration: underline;
}

.page-about-company-development-history__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

.page-about-company-development-history__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 20px;
  cursor: pointer;
}

.page-about-company-development-history__btn--primary {
  background-color: #FFD700;
  color: #000000;
  border: 2px solid #FFD700;
}

.page-about-company-development-history__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #000000;
}

.page-about-company-development-history__btn--secondary {
  background-color: #DC143C;
  color: #ffffff;
  border: 2px solid #DC143C;
}

.page-about-company-development-history__btn--secondary:hover {
  background-color: #c00c30;
  border-color: #c00c30;
  color: #ffffff;
}

.page-about-company-development-history__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  position: relative;
  padding-bottom: 15px;
}

.page-about-company-development-history__section-title .highlight {
  color: #DC143C;
}

.page-about-company-development-history__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-about-company-development-history__introduction-section,
.page-about-company-development-history__commitment-section,
.page-about-company-development-history__registration-guide,
.page-about-company-development-history__official-link,
.page-about-company-development-history__conclusion-cta {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-about-company-development-history__text-content {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

.page-about-company-development-history__text-link {
  color: #DC143C;
  text-decoration: none;
  font-weight: bold;
}

.page-about-company-development-history__text-link:hover {
  text-decoration: underline;
}

.page-about-company-development-history__timeline-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.page-about-company-development-history__timeline {
  position: relative;
  padding: 20px 0;
}

.page-about-company-development-history__timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #FFD700;
  transform: translateX(-50%);
  border-radius: 2px;
}

.page-about-company-development-history__timeline-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  position: relative;
}

.page-about-company-development-history__timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.page-about-company-development-history__timeline-item:nth-child(even) .page-about-company-development-history__timeline-content {
  margin-left: calc(50% + 30px);
  text-align: left;
}

.page-about-company-development-history__timeline-item:nth-child(odd) .page-about-company-development-history__timeline-content {
  margin-right: calc(50% + 30px);
  text-align: right;
}

.page-about-company-development-history__timeline-item:nth-child(even) .page-about-company-development-history__timeline-dot {
  left: 50%;
  transform: translateX(-50%);
}

.page-about-company-development-history__timeline-item:nth-child(odd) .page-about-company-development-history__timeline-dot {
  left: 50%;
  transform: translateX(-50%);
}

.page-about-company-development-history__timeline-dot {
  width: 20px;
  height: 20px;
  background-color: #DC143C;
  border: 3px solid #FFD700;
  border-radius: 50%;
  position: absolute;
  top: 0;
  z-index: 1;
}

.page-about-company-development-history__timeline-content {
  width: 45%;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 0;
}

.page-about-company-development-history__timeline-year {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-about-company-development-history__list {
  list-style: disc inside;
  margin-top: 15px;
  color: #555;
}

.page-about-company-development-history__list li {
  margin-bottom: 8px;
}

.page-about-company-development-history__commitment-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about-company-development-history__grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-about-company-development-history__grid-list li {
  background-color: #fefefe;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-about-company-development-history__grid-list li:hover {
  transform: translateY(-5px);
}

.page-about-company-development-history__grid-title {
  font-size: 1.4em;
  color: #DC143C;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about-company-development-history__ordered-list {
  list-style: decimal inside;
  margin-top: 20px;
  color: #444;
  font-size: 1.1em;
  padding-left: 20px;
}

.page-about-company-development-history__ordered-list li {
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-about-company-development-history__ordered-list strong {
  color: #000000;
}

.page-about-company-development-history__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about-company-development-history__conclusion-cta .page-about-company-development-history__text-content {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about-company-development-history__hero-title {
    font-size: 2.8em;
  }
  .page-about-company-development-history__hero-subtitle {
    font-size: 1.3em;
  }
  .page-about-company-development-history__section-title {
    font-size: 2em;
  }
  .page-about-company-development-history__timeline::before {
    left: 20px;
    transform: translateX(0);
  }
  .page-about-company-development-history__timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-about-company-development-history__timeline-item:nth-child(even) .page-about-company-development-history__timeline-content,
  .page-about-company-development-history__timeline-item:nth-child(odd) .page-about-company-development-history__timeline-content {
    margin-left: 50px;
    margin-right: 0;
    width: calc(100% - 50px);
    text-align: left;
  }
  .page-about-company-development-history__timeline-dot {
    left: 20px;
    transform: translateX(-50%);
  }
  .page-about-company-development-history__timeline-item:nth-child(odd) {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-about-company-development-history__hero-section {
    padding: 80px 0 50px;
  }
  .page-about-company-development-history__hero-title {
    font-size: 2.2em;
  }
  .page-about-company-development-history__hero-subtitle {
    font-size: 1.1em;
  }
  .page-about-company-development-history__section-title {
    font-size: 1.8em;
  }
  .page-about-company-development-history__timeline-content {
    padding: 20px;
  }
  .page-about-company-development-history__timeline-year {
    font-size: 1.5em;
  }
  .page-about-company-development-history__text-content,
  .page-about-company-development-history__list li,
  .page-about-company-development-history__ordered-list li {
    font-size: 1em;
  }
  .page-about-company-development-history__grid-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-about-company-development-history__hero-section {
    padding: 60px 0 40px;
  }
  .page-about-company-development-history__hero-title {
    font-size: 1.8em;
  }
  .page-about-company-development-history__hero-subtitle {
    font-size: 1em;
  }
  .page-about-company-development-history__section-title {
    font-size: 1.5em;
    margin-top: 40px;
  }
  .page-about-company-development-history__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-about-company-development-history__timeline-content {
    margin-left: 40px !important;
    width: calc(100% - 40px) !important;
  }
  .page-about-company-development-history__timeline-dot {
    left: 20px;
  }
  .page-about-company-development-history__timeline::before {
    left: 20px;
  }
  .page-about-company-development-history__timeline-year {
    font-size: 1.3em;
  }
  .page-about-company-development-history__grid-title {
    font-size: 1.2em;
  }
}