/* ===========================
   GENERAL PAGE STYLES
=========================== */
body {
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  color: #333;
  background-color: #faf9f7;
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

h1, h2, h3 {
  font-weight: normal;
}

header.brand-history-header {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #fff9f3, #faf3e9);
}

header.brand-history-header h1 {
  font-size: 2.5rem;
  color: #333;
}

header.brand-history-header h2 {
  font-size: 1.25rem;
  color: #b28f54;
}

/* ===========================
   MAIN SECTIONS
=========================== */
main {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

main section {
  margin-bottom: 3rem;
}

main section h3 {
  font-size: 1.5rem;
  color: #b28f54;
  border-bottom: 2px solid #b28f54;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

main section p,
main section ul {
  font-size: 1rem;
  color: #555;
}

main section ul {
  list-style: none;
  padding-left: 0;
}

main section ul li {
  padding: 0.25rem 0;
}

/* ===========================
   TIMELINE STYLE
=========================== */
.brand-timeline .timeline {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.brand-timeline .timeline-item {
  text-align: center;
  font-size: 1rem;
  padding: 1rem;
  flex: 1 1 150px;

}

.brand-timeline .timeline-item span {
  font-size: 1.25rem;
  font-weight: bold;
  color: #b28f54;
  display: block;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 70%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #3333337f;
  z-index: 0;
}.timeline::after {
  content: "";
  position: absolute;
  top: 70%;
  right: 0;
  width: 1px;
  height: 1px;

}
/* ===========================
   FOOTER
=========================== */
footer.brand-footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  background-color: #f1eee9;
  color: #555;
}

/* ===========================
   RESPONSIVE STYLES
=========================== */
@media screen and (max-width: 600px) {
  header.brand-history-header h1 {
    font-size: 2rem;
  }

  header.brand-history-header h2 {
    font-size: 1rem;
  }

  .brand-timeline .timeline {
    flex-direction: column;
    align-items: center;
  }

  .brand-timeline .timeline-item {
    padding: 0.5rem 0;
  }
}
