@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,800");

html {
  height: 100%;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
}

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 46%;
  top: 35%;
  background-image: url("https://media.giphy.com/media/STroE7bTBLTzxQUrZc/giphy.gif");
  border-radius: 50%;
  z-index: 9999;
  background-repeat: no-repeat;
  background-position: center;
  margin: -10px 0 0 -36px;
  background-position: unset;
  background-size: contain;
}

#texty {
  color: white;
}

.question,
.answer {
  border: 1px solid rgba(255, 20, 147, 0.1);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  color: white;
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.08);
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.q-text,
.a-text {
  color: white;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.container-fluid {
  width: 100%;
  padding: 0 15px;
}




.FAQ {
  font-size: 4rem;
  /* Use the desired font size */
  margin-top: 180px;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 800;
  padding: 0 20px;
  letter-spacing: 1px;
  /* background-image: url("../assets/Images/timeline.svg") !important; */
  background: linear-gradient(120deg, #ff1493 0%, #ff66cc 30%, #9d4edd 60%, #ff1493 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-repeat: no-repeat;
  background-size: 200% auto;
  text-shadow: 0 0 20px rgba(255, 20, 147, 0.3),
               0 0 40px rgba(255, 20, 147, 0.2);
  filter: drop-shadow(0 0 20px rgba(255, 20, 147, 0.15))
          drop-shadow(0 0 40px rgba(255, 20, 147, 0.2))
          brightness(1.2);
}









.question {
  background-color: rgba(45, 26, 61, 0.4);
  height: auto;
  display: flex;
  border-left: solid 5px #ff1493;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.1),
              0 0 30px rgba(255, 20, 147, 0.08);
}

.answer {
  background-color: rgba(45, 26, 61, 0.3);
  color: #fff;
  height: auto;
  display: flex;
  border-left: solid 5px #ff1493;
  margin-bottom: 20px !important;
  padding-bottom: 20px !important;
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.1),
              0 0 25px rgba(255, 20, 147, 0.1);
}

.q-span {
  font-size: 2rem;
  color: #ff1493;
  font-weight: bold;
}

.q-text {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: bold;
  line-height: 1.6;
}

.a-span {
  font-size: 2rem;
  color: #ff1493;
  text-shadow: 0 0 10px rgba(255, 20, 147, 0.08);
  font-weight: bold;
}

.a-text {
  font-size: 0.95rem;
  color: rgb(215, 214, 214);
  line-height: 1.6;
}

.col-1,
.col-11 {
  margin: 0 !important;
}

@media only screen and (max-width: 1200px) and (min-width: 992px) {
  .a-span {
    font-size: 6vh;
  }
}

@media only screen and (max-width: 776px) and (min-width: 568px) {

  .a-span,
  .q-span {
    margin-left: -1% !important;
  }

  .a-text,
  .q-text {
    margin-left: 1% !important;
  }
}

@media only screen and (min-width: 569px) {
  .questions-collapse {
    display: none;
  }
}

/* Mobile FAQ Styles - Match Design */
@media only screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}  
@media only screen and (max-width: 768px) {
  .FAQ {
    font-size: 2.2rem;
    margin-top: 120px;
    margin-bottom: 35px;
    padding: 0 20px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.4),
                 0 0 40px rgba(255, 20, 147, 0.3);
    filter: drop-shadow(0 0 25px rgba(255, 20, 147, 0.15))
            drop-shadow(0 0 50px rgba(255, 20, 147, 0.2));
  }
  
  .container-fluid {
    padding: 0 15px !important;
    max-width: 100%;
  }
  
  .container {
    padding: 0 15px !important;
    max-width: 100%;
  }
  
  .question,
  .answer {
    padding: 20px 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 15px !important;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
  }
  
  .question {
    background-color: rgba(45, 26, 61, 0.5);
    border-left: solid 4px #ff1493;
    padding-bottom: 20px !important;
  }
  
  .answer {
    background-color: rgba(45, 26, 61, 0.4);
    border-left: solid 4px #ff1493;
    margin-top: 0 !important;
    padding-top: 20px !important;
  }
  
  .col-1 {
    flex: 0 0 12% !important;
    max-width: 12% !important;
    padding-left: 0 !important;
    padding-right: 10px !important;
  }
  
  .col-11 {
    flex: 0 0 88% !important;
    max-width: 88% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .q-span,
  .a-span {
    font-size: 1.3rem !important;
    line-height: 1.2;
  }
  
  .q-text {
    font-size: 0.95rem !important;
    line-height: 1.5;
    font-weight: 600;
  }
  
  .a-text {
    font-size: 0.9rem !important;
    line-height: 1.6;
    font-weight: 400;
  }
}

@media only screen and (max-width: 568px) {
  .FAQ{
    font-size: 1.6rem;
    margin-top: 100px;
    margin-bottom: 30px;
    padding: 0 15px;
    letter-spacing: 0.3px;
    line-height: 1.3;
    text-shadow: 0 0 25px rgba(255, 20, 147, 0.5),
                 0 0 50px rgba(255, 20, 147, 0.4),
                 0 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 30px rgba(255, 20, 147, 0.2))
            drop-shadow(0 0 60px rgba(255, 20, 147, 0.25));
  }
  
  #status {
    width: 150px;
    height: 150px;
    left: 45%;
    top: 40%;
  }

  #questions {
    display: block !important;
  }
  
  .questions-collapse {
    display: none !important;
  }

  h1 {
    font-size: 2em !important;
  }
  
  .container-fluid,
  .container {
    padding: 0 10px !important;
  }
  
  .question,
  .answer {
    padding: 15px 12px !important;
    margin-bottom: 12px !important;
  }
  
  .question {
    padding-bottom: 15px !important;
  }
  
  .answer {
    padding-top: 15px !important;
  }

  .col-1 {
    flex: 0 0 15% !important;
    max-width: 15% !important;
    padding-right: 8px !important;
  }
  
  .col-11 {
    flex: 0 0 85% !important;
    max-width: 85% !important;
  }
  
  .q-span,
  .a-span {
    font-size: 1.1rem !important;
  }
  
  .q-text {
    font-size: 0.85rem !important;
    line-height: 1.4;
  }
  
  .a-text {
    font-size: 0.8rem !important;
    line-height: 1.5;
  }
}

@media only screen and (max-width: 480px) {
  .FAQ {
    font-size: 1.4rem;
    margin-top: 90px;
    margin-bottom: 25px;
    padding: 0 12px;
    letter-spacing: 0.2px;
    line-height: 1.3;
    text-shadow: 0 0 30px rgba(255, 20, 147, 0.6),
                 0 0 60px rgba(255, 20, 147, 0.5),
                 0 2px 6px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 0 35px rgba(255, 20, 147, 0.25))
            drop-shadow(0 0 70px rgba(255, 20, 147, 0.3));
  }
  
  .container,
  .container-fluid {
    padding: 0 8px !important;
  }
  
  .question,
  .answer {
    padding: 12px 10px !important;
    margin-bottom: 10px !important;
  }
  
  .question {
    padding-bottom: 12px !important;
  }
  
  .answer {
    padding-top: 12px !important;
  }
  
  .col-1 {
    flex: 0 0 18% !important;
    max-width: 18% !important;
    padding-right: 6px !important;
  }
  
  .col-11 {
    flex: 0 0 82% !important;
    max-width: 82% !important;
  }
  
  .q-span,
  .a-span {
    font-size: 0.95rem !important;
  }
  
  .q-text {
    font-size: 0.75rem !important;
    line-height: 1.4;
  }
  
  .a-text {
    font-size: 0.7rem !important;
    line-height: 1.5;
  }
}

@media only screen and (max-width: 400px) {
  .FAQ{
    font-size: 1.2rem;
    margin-top: 80px;
    margin-bottom: 25px;
    padding: 0 10px;
    letter-spacing: 0.2px;
    line-height: 1.4;
    text-shadow: 0 0 35px rgba(255, 20, 147, 0.7),
                 0 0 70px rgba(255, 20, 147, 0.6),
                 0 2px 8px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 0 40px rgba(255, 20, 147, 0.3))
            drop-shadow(0 0 80px rgba(255, 20, 147, 0.35));
  }
  
  .container,
  .container-fluid {
    padding: 0 6px !important;
  }
  
  .question,
  .answer {
    padding: 10px 8px !important;
  }

  .col-1 {
    flex: 0 0 20% !important;
    max-width: 20% !important;
    padding-right: 5px !important;
  }
  
  .col-11 {
    flex: 0 0 80% !important;
    max-width: 80% !important;
  }
  
  .q-span,
  .a-span {
    font-size: 0.85rem !important;
  }
  
  .q-text {
    font-size: 0.7rem !important;
    line-height: 1.3;
  }
  
  .a-text {
    font-size: 0.65rem !important;
    line-height: 1.4;
  }
}

.q-span {
  color: #ff5e5e; /* Soft red */
  font-weight: bold;
  transition: color 0.3s ease; /* Smooth transition on hover */
}

.q-span:hover {
  color: #ff7f7f; /* Slightly lighter red on hover */
}