.info-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 40px 0;
}

.info-box {
  display: flex;
  align-items: flex-start;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  width: 30%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.info-box img {
  width: 125px;
  height: 125px;
  margin-right: 15px;
}

.info-box .text {
  flex: 1;
  text-align: left;
}

.info-box h3 {
  margin: 0;
  font-size: 18px;
  color: #4caf50;
}

.info-box p {
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.additional-info p {
  margin: 5px 0;
  line-height: 1.8;
  font-size: 1rem;
  color: #333;
  text-align: left;
}

h2 {
  text-align: center;
  color: #4caf50;
  text-decoration: underline;
  padding-top: 6rem;
  font-size: 2.2rem;
}

.container {
  padding: 20px;
}

.section-title {
  font-size: 24px;
  color: #333;
  font-weight: bold;
  margin: 20px 0;
}

.steps-container {
  display: flex;
  align-items: center;
  margin: 20px 0 50px;
  justify-content: space-between;
}

.step {
  text-align: center;
  width: 13rem;
  height: 13rem;
  background-color: #e8f5e9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #333;
  font-size: 2rem;
}

.arrow2 {
  font-size: 2rem;
  color: #333;
  margin: 0 10px;
}

.footer {
  text-align: center;
  margin-top: 40px;
}

.footer-button {
  background-color: #4caf50;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.side-by-side-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 20px 0 40px;
}

.info-box-left,
.info-box-right {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.info-heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #4caf50;
  margin-bottom: 15px;
}

.info-box-left p,
.info-box-right p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: auto;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px 40px;
  border-radius: 10px;
  width: 60%;
  max-width: 800px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: #333;
  line-height: 1.8;
  position: relative;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #aaa;
  font-size: 2rem;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

.popup-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #008000;
  margin-bottom: 20px;
}

.info-box2 {
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 15px;
  margin: 20px 0;
}

.popup-title-box {
  background-color: #daf5cc;
  border: 1px solid #ccc;
  padding: 10px 15px;
  font-weight: bold;
  margin-bottom: 20px;
}

.modal-content ul {
  list-style-type: disc;
  margin-left: 20px;
}

.modal-content li {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.modal-content a {
  color: #0080ff;
  text-decoration: underline;
}

.modal-content a:hover {
  color: #0056b3;
}

.modal-content p.important {
  font-style: italic;
  font-weight: bold;
  color: #444;
  margin: 10px 0;
}

.faq-container {
  width: 100%;
  margin: 30px auto;
  font-family: Arial, sans-serif;
}

.faq-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.faq-question {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  text-align: left;
  background-color: #e1e1e1;
  border: 1px solid #ccc;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e8f5e9;
}

.faq-answer {
  display: none;
  padding: 1.2rem;
  border: 1px solid #ccc;
  border-top: none;
  background-color: #fafafa;
  font-size: 1rem;
  color: #333;
}

.faq-answer.show {
  display: block;
}

.faq-link {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #4caf50;
}

.faq-link .link-style {
  color: #4caf50;
  text-decoration: underline;
}

.info_li {
  font-size: 1.2rem;
  list-style: disc;
}

@media screen and (max-width: 768px) {
  .info-container,
  .steps-container,
  .side-by-side-container {
    flex-direction: column;
  }

  .info-container {
    align-items: center;
  }

  .info-box {
    width: 90%;
    margin-bottom: 20px;
  }

  .step {
    width: 10rem;
    height: 10rem;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .arrow2 {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  h2 {
    font-size: 1.8rem;
    padding-top: 3rem;
  }

  .info-box-left,
  .info-box-right {
    margin-bottom: 20px;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 12px;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  .popup-title {
    font-size: 1.5rem;
  }

  .info-box2 ul li {
    font-size: 1rem !important;
  }

  .modal-content {
    width: 90%;
    padding: 20px;
  }
}

@media screen and (max-width: 480px) {
  .info-box {
    display: block;
    padding: 10px;
  }

  #wrapper .info-box.flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #wrapper .info-box.flex-container .text {
    text-align: center;
  }

  .step {
    width: 8rem;
    height: 8rem;
    font-size: 1.2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 24px;
  }

  .footer-button {
    padding: 8px 15px;
    font-size: 14px;
  }

  .modal-content {
    padding: 15px;
  }

  .close {
    top: 10px;
    right: 15px;
  }

  .info_li {
    font-size: 0.8rem;
  }
}

@media (max-width: 460px) {
  article.innerContentsWrap.viewMargin {
    margin-top: 0 !important;
  }

  article.innerContentsWrap.viewMargin .contentsWrap,
  #wrapper .contentsWrap {
    padding: 0 !important;
  }

  #wrapper .customer_invest .contentsWrap {
    padding-top: 3rem !important;
  }

  .info-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    text-align: center !important;
    padding: 20px 15px !important;
    margin-bottom: 20px !important;
  }

  .info-box img {
    width: 50% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto 20px auto !important;
  }

  .info-box .text {
    width: 100% !important;
    text-align: center !important;
    padding: 0 10px !important;
  }

  .info-box h3 {
    margin: 0 !important;
    font-size: 20px !important;
    text-align: center !important;
  }

  .info-box p {
    margin: 8px 0 0 !important;
    font-size: 16px !important;
    text-align: center !important;
    word-break: keep-all !important;
  }
}

@media (max-width: 426px) {
  .info_li {
    font-size: 0.8rem;
  }

  .modal-content {
    width: 90%;
    padding: 15px;
  }
}

@media screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3),
  screen and (min-device-width: 390px) and (max-device-width: 844px) and (-webkit-min-device-pixel-ratio: 3) {
  .modal-content {
    width: 90%;
    max-width: 350px;
    padding: 15px;
  }

  .info-container,
  .steps-container {
    flex-direction: column;
  }

  .info-box {
    width: 100%;
    display: block;
    margin-bottom: 15px;
  }

  .step {
    width: 8rem;
    height: 8rem;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .arrow2 {
    transform: rotate(90deg);
    margin: 5px 0;
  }
}

@media screen and (device-width: 430px) and (device-height: 932px) and (-webkit-device-pixel-ratio: 3),
  screen and (device-width: 393px) and (device-height: 852px) and (-webkit-device-pixel-ratio: 3),
  screen and (device-width: 428px) and (device-height: 926px) and (-webkit-device-pixel-ratio: 3) {
  .modal-content {
    width: 90%;
    max-width: 380px;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 10px;
  }

  .popup-title {
    font-size: 1.3rem;
  }

  .info-box2 ul li {
    font-size: 0.9rem !important;
  }
}

.customer_wrap .contact-container {
  display: block;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 6rem;
  box-sizing: border-box;
}

@media (max-width: 1439px) {
  .customer_wrap .contact-container {
    margin-top: 3rem;
  }

  #wrapper .customer-content .customer-item.speakup-inquiry-row .item-list .h6-bold {
    margin-top: 0 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
  }

  #wrapper .contact-container a {
    color: #007bff;
    text-decoration: none;
  }

  #wrapper .contact-container a:hover {
    text-decoration: underline;
  }
}

@media (max-width: 1399px) {
  #wrapper .steps-container {
    justify-content: center;
    gap: 0.5rem;
  }

  #wrapper .steps-container .step {
    width: 10.5rem;
    height: 10.5rem;
    min-width: 10.5rem;
    min-height: 10.5rem;
    flex: 0 0 10.5rem;
    font-size: 1.6rem;
    border-radius: 50%;
  }

  #wrapper .steps-container .arrow2 {
    font-size: 1.5rem;
    margin: 0 0.25rem;
    flex: 0 0 auto;
  }
}

@media (max-width: 1375px) {
  #wrapper .info-box.flex-container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1140px) {
  #wrapper .customer-content .customer-item.speakup-inquiry-row .item-list {
    width: 70%;
    max-width: 70%;
  }
}

@media (max-width: 1100px) {
  #wrapper .steps-container {
    flex-direction: column;
    align-items: center;
  }

  #wrapper .steps-container .arrow2 {
    transform: rotate(90deg);
    margin: 5px 0;
  }

  #wrapper .speakup-note br {
    display: none;
  }
}

@media (max-width: 767px) {
  .customer_wrap .contact-container {
    padding: 1rem;
  }
}

@media (max-width: 680px) {
  #wrapper .customer-content .customer-item.speakup-inquiry-row .item-list .h6-bold {
    font-size: 18px !important;
  }
}

@media (max-width: 590px) {
  #wrapper .customer-content .customer-item.speakup-inquiry-row .item-list {
    padding: 0 20px;
  }
}

@media (max-width: 500px) {
  #wrapper .customer-content .customer-item.speakup-inquiry-row a.item-list {
    width: 100%;
    max-width: 100%;
  }
}




