.about-page {
  padding-bottom: 40px;
  margin-top: 0;
}

.about-header {
  background: linear-gradient(135deg, #D50036 0%, #FF1744 100%);
  padding: 40px 0;
  text-align: center;
  color: white;
  margin-bottom: 32px;
}

.about-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 8px;
}

.about-subtitle {
  opacity: 0.9;
}

.about-section {
  background: white;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.section-title {
  font-size: 20px;
  font-weight: bold;
  color: #D50036;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #FFEBEE;
}

.about-content {
  line-height: 1.8;
  color: #666;
}

.about-content p {
  margin-bottom: 16px;
}

.company-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-item {
  background: #F9F9F9;
  padding: 16px;
  border-radius: 8px;
}

.info-item h4 {
  font-size: 14px;
  color: #999;
  margin-bottom: 8px;
}

.info-item p {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #E5E5E5;
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: #D50036;
  border-radius: 50%;
  border: 3px solid #FFEBEE;
}

.timeline-year {
  font-size: 18px;
  font-weight: bold;
  color: #D50036;
  margin-bottom: 4px;
}

.timeline-content {
  color: #666;
}

.vision-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vision-item {
  text-align: center;
  padding: 20px;
  background: #F9F9F9;
  border-radius: 8px;
}

.vision-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #D50036 0%, #FF1744 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: white;
  font-size: 24px;
}

.vision-item h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.vision-item p {
  font-size: 14px;
  color: #666;
}

@media (max-width: 768px) {
  .about-page {
    padding: 16px;
    padding-bottom: 40px;
  }
  
  .about-header {
    padding: 24px 0;
  }
  
  .about-title {
    font-size: 24px;
  }
  
  .company-info {
    grid-template-columns: 1fr;
  }
  
  .vision-list {
    grid-template-columns: 1fr;
  }
}