.main-wrapper {
  padding-top: 0px;
}

.main-banner {
  background-image: url('images/story-kido/banner-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.banner-overlay h1 {
  font-size: 42px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner-overlay p {
  font-size: 24px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.story-section {
  padding: 50px 0;
}

.story-section h2 {
  font-size: 45px;
  color: #B10E05;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.story-section h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #B10E05;
}

.story-content {
  margin-bottom: 60px;
}

.story-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.story-image {
  margin-bottom: 20px;
  position: relative;
}

.story-image img {
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-caption {
  margin-top: 10px;
  font-style: italic;
  font-size: 14px;
  color: #666;
  text-align: center;
}

.vision-box {
  background-color: #f9f9f9;
  padding: 25px;
  border-left: 4px solid #B10E05;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.vision-box h3 {
  color: #B10E05;
  font-size: 20px;
  margin-bottom: 15px;
}

.vision-box p {
  margin-bottom: 20px;
}

.vision-box ul {
  padding-left: 20px;
}

.vision-box ul li {
  margin-bottom: 10px;
}

.production-steps {
  margin-top: 30px;
}

.step-box {
  background-color: #fff;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  position: relative;
  min-height: 200px;
  transition: transform 0.3s ease;
}

.step-box:hover {
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background-color: #B10E05;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.step-box h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #B10E05;
}

.certification-boxes {
  margin-top: 30px;
}

.certification-box {
  background-color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  min-height: 220px;
}

.certification-box img {
  max-width: 80px;
  max-height: 80px;
  margin-bottom: 15px;
}

.certification-box h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #B10E05;
}

.certification-box p {
  font-size: 14px;
}

.csr-list {
  padding-left: 20px;
}

.csr-list li {
  margin-bottom: 15px;
  text-align: justify;
}

@media (max-width: 767px) {
  .main-banner {
    height: 300px;
  }
  
  .banner-overlay h1 {
    font-size: 28px;
  }
  
  .banner-overlay p {
    font-size: 18px;
  }
  
  .story-section h2 {
    font-size: 24px;
  }
  
  .step-box, .certification-box {
    min-height: auto;
  }
}

/* Enhanced main banner with background */
.main-banner {
  background-image: url('./images/home_page/mooncake_2024/banner_1/icon_3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  position: relative;
  margin-bottom: 40px;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.banner-overlay h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.banner-overlay p {
  color: #fff;
  font-size: 1.5rem;
  max-width: 800px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.discount-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.discount-table thead th {
  background-color: #bd2227;
  color: white;
  font-size: 24px;
  text-align: center;
  padding: 15px;
}

.discount-table td {
  text-align: center;
  font-weight: bold;
  padding: 12px;
  font-size: 20px;
}

.discount-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.discount-table td:nth-child(2) {
  font-style: italic;
}

