body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('../images/mbg.png'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    
}

.button-container {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
}

.faq-item {
    background-color: #01032b;
    border: 1px solid white;
    border-radius: 4px;
    margin: 10px;
    padding: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.question {
    font-weight: bold;
    cursor: pointer;
    color: white;
    background-color: #01032b;
}

.answer {
    display: none;
    padding: 10px;
    background-color: white;
    color: #01032b;
    border-radius: 4px;
    margin-top: 5px;
}

.answer.active {
    display: block;
}

.faqtitle {
   text-align: center;
   color: white;
   font-weight: bold;
   margin-top: 30px;
   margin-bottom: 15px;
   text-decoration: underline;
}
.container {
    margin-bottom: 30px;
    z-index: 2;
    position: relative;
}

 .support-overlay {
  display: none;        
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.support-popup {
  font-family: Arial, sans-serif;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.support-popup .ttl {
    font-weight: bold;
    text-align: center;
}
.close-support {
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 50px;
  cursor: pointer;
  color: red;
}

.sp-content {
  margin-top: 20px;
}

.sp-option {
  padding: 10px;
  border-radius: 8px;
  background-color: #f0f0f0;
  margin-bottom: 10px;
}

.sp-option p {
  margin: 0;
}
