.hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: 75px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 220px;
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 352px;
}

.hero-subtitle {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  color: #251D03;
}

.hero-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 32px;
  color: #251D03;
}

.hero-decoration {
  margin-top: 12px;
}

.decoration-svg {
  width: 99px;
  height: 7px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero {
    height: 300px;
    margin-top: 120px;
  }
  
  .hero-content {
    padding-left: 40px;
  }
  
  .hero-title {
    font-size: 28px;
    line-height: 28px;
  }
  
  .hero-subtitle {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 250px;
  }
  
  .hero-content {
    padding-left: 20px;
  }
  
  .hero-title {
    font-size: 24px;
    line-height: 24px;
  }
  
  .hero-subtitle {
    font-size: 11px;
  }
  
  .decoration-svg {
    width: 80px;
    height: 6px;
  }
}
