/* BASIC css start */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");


.qa-hero,
.qa-text {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont,
               "Apple SD Gothic Neo", "Noto Sans KR",
               "Segoe UI", Roboto, Arial, sans-serif;
}

/*
.qa-hero,
.qa-text {
  font-family: "Malgun Gothic", "¸¼Àº °íµñ",
               -apple-system, BlinkMacSystemFont,
               "Apple SD Gothic Neo", "Noto Sans KR",
               "Segoe UI", Arial, sans-serif;
}
*/

#qa-page {
  max-width: none;     
  margin: 0 auto;
  padding: 50px 0;     
  line-height: 1.9;
  background: #fff;  
}

.qa-image.logo {
  margin: 40px 0 30px;
  text-align: center;
}

.qa-image.logo img {
  width: 150px;
  margin-top: 25px;
  max-width: 60%;
}

.qa-hero {
  text-align: left;
  font-weight: 500;
}

.qa-hero h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #111;
  
}

.qa-hero .sub {
  text-align: center;
  margin-top: 25px;
  font-size: 35px; 
  letter-spacing: 0.5px;
  font-weight: 500;
  color: #000;
}



.qa-image.full {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  justify-content: center;
}

.qa-image.full img {
  width: 100%;
  max-width: 1000px; 
  height: auto;
  display: block;
}


.qa-text {
  text-align: left;
  margin: 50px 0;
  font-size: 22px;
  color: #333;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 100px;
}

.qa-inner {
  max-width: 1000px;   
  margin: 0 auto;
  padding: 0 20px;   
}




.divider {
  margin-top: 100px;
}

/* Áß¾Ó

.divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #bbb,
    transparent
  );
  margin: 20px auto;
}


.qa-text {
  text-align: center;
  margin: 50px 0;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  letter-spacing: 1px;
}
*/



.qa-image {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.qa-image img {
  max-width: 100%;
  border-radius: 2px;
}


.qa-footer {
  text-align: center;
  margin-top: 100px;
  font-size: 18px;
}





.line-animate span {
  display: block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.line-animate span.show {
  opacity: 1;
  transform: translateY(0);
}















@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BASIC css end */

