:root {
  --primary-color: #82613f;
  --text-color: #333;
}

#flow-container {
  background: #fff;
  width: 100%;
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  #flow-container {
    margin-bottom: 2rem;
  }
}
#flow-container #question-part > p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
#flow-container .step-badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 4px 30px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
#flow-container .question-txt {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.4;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
#flow-container #q-subtext {
  margin-top: 0rem;
  margin-bottom: 1rem;
}
#flow-container .description-txt {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
#flow-container #q-desc {
  display: none;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
}
#flow-container .options-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 2rem;
}
#flow-container .opt-btn {
  flex: 1;
  min-width: 160px;
  padding: 18px 10px;
  font-size: 1.1rem;
  border: 2px solid #eee;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}
#flow-container .opt-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}
#flow-container .result-title {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 5px;
}
#flow-container .member-type {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}
#flow-container .fee {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  padding: 15px;
  background: #fff9e6;
  border-radius: 5px;
}
#flow-container #res-note {
  display: none;
  font-size: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #666;
}
#flow-container .link-btn {
  display: block;
  background-color: #009f3c;
  color: #fff;
  padding: 20px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.2rem;
  transition: opacity 0.2s;
  margin-bottom: 15px;
}
#flow-container .link-btn:link, #flow-container .link-btn:visited {
  color: #fff !important;
}
#flow-container .link-btn:hover {
  opacity: 0.9;
}
#flow-container .reset-btn {
  background: none;
  border: none;
  color: #888;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9rem;
}
#flow-container .reset-btn:hover {
  color: #333;
}
#flow-container .hidden {
  display: none;
}