.about-section {
  margin-bottom: 60px;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.about-image {
  width: 100%;
  border-radius: 8px;
}
.company-info {
  margin-bottom: 50px;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table th, .info-table td {
  border: 1px solid #ddd;
  padding: 15px;
}
.info-table th {
  background-color: #f2f2f2;
  width: 30%;
  text-align: left;
}
.store-section {
  margin-bottom: 60px;
}
.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.store-info {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}
.store-info h3 {
  margin-top: 20px;
  padding-bottom: 5px;
  border-bottom: 2px solid #007bff;
}
.store-info h3:first-child {
  margin-top: 0;
}
.store-info h4 {
  margin-top: 15px;
  margin-bottom: 5px;
}
.store-divider {
  border: 0;
  border-top: 1px dashed #ccc;
  margin: 30px 0;
}
.store-map {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}
.store-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.staff-section {
  margin-bottom: 60px;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}
.staff-card {
  text-align: center;
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}
.staff-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
.staff-name {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.staff-position {
  color: #6c757d;
  margin-bottom: 10px;
}
.history-section {
  margin-bottom: 60px;
}
.history-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.history-timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: #ddd;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}
.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}
.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 4px solid #007bff;
  border-radius: 50%;
  top: 15px;
  z-index: 1;
}
.timeline-left {
  left: 0;
  text-align: right;
}
.timeline-left::after {
  right: -10px;
}
.timeline-right {
  left: 50%;
}
.timeline-right::after {
  left: -10px;
}
.timeline-content {
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
}
.timeline-year {
  font-weight: bold;
  color: #007bff;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  .store-grid {
    grid-template-columns: 1fr;
  }
}