#start {
  background: linear-gradient(to right, #2F2C3F 0%, #4A465C 40%, #6A667A 70%, #8A879A 100%);
  padding: 60px 0 40px 0;
  position: relative;
}

#start .block {
  color: #ffffff;
}
#start .block img {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 40px;
}
#start .block p {
  font-size: 14px;
  line-height: 1.3;
}
#start .divider {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 20px 0;
}

#start .divider::before, #start .divider::after {
  content: "";
  width: 5px;
  height: 5px;
  background: #DDDDDD;
  border-radius: 50%;
}

#start .divider span {
  width: 5px;
  height: 5px;
  background: #DDDDDD;
  border-radius: 50%;
}
#start a {
  color: #FFFFFF;
  text-decoration: underline;
}
#start a:hover {
  color: #FFFFFF;
}


#overview {
  text-align: center;
  padding: 90px 0;
}

#overview h2 {
  padding-bottom: 20px;
  line-height: 33px;
  margin: 0;
  font-size: 30px;
  font-weight: 550;
}
#overview p {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}
#overview .video-card {
  max-width: 800px;
  margin: 40px auto 0;
}
#overview .video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
#overview .video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

#call-to-try {
  background: linear-gradient(to left, #2F2C3F 0%, #4A465C 40%, #6A667A 70%, #8A879A 100%);
  background-size: cover;
  padding: 70px 0;
  position: relative;
  text-align: center;
  color: #fff;
}
#call-to-try h2 {
  padding-bottom: 20px;
  line-height: 33px;
  margin: 0;
  font-size: 30px;
}
#call-to-try p {
  font-size: 14px;
  line-height: 1.6;
}
#call-to-try .button {
  display: inline-block;
  padding: 14px 40px;
  margin-top: 40px;
  background-color: #FFFFFF;
  color: #2F2C3F;
  font-size: 16px;
  text-decoration: none;
  border-radius: 12px;
}