/* ============================================
   Homepage - index.html
   ============================================ */

.home-banner {
  background: url("../images/home_top_banner.png") no-repeat;
  background-size: cover;
  padding: 40px 0 0 0;
  text-align: center;
  color: #fff;
}

.home-banner h1 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 24px;
}

.home-steps {
  margin-top: 12px;
  padding: 24px 0;
}

.home-steps .step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.home-steps .step-number {
  font-size: 58px;
  font-weight: bold;
  color: #437BFB;
  line-height: 1;
}

.home-steps .step-info h3 {
  font-size: 24px;
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.home-steps .step-info p {
  font-size: 12px;
  color: #FFFFFF;
  line-height: 1.4;
}

/* Promo Cards */
.promo-section {
  padding: 20px 0;
}

.promo-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  margin-bottom: 16px;
}

.promo-card:hover {
  transform: translateY(-2px);
}

.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Section */
.product-section {
  padding: 0;
}
