* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  line-height: 1.6;
  color: #222;
  background:#080b12;
}

/* 공통 컨테이너 */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position:relative;
}

/* 헤더 */
.header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  position: sticky;
  top: 0;
  height:70px;
  z-index: 1000;
}

.header .logo {
  font-size: 24px;
  font-weight: bold;
  width: 180px;
  top: 5px;
  position:absolute;
}
.header .logo a{
  position:absolute;
}
.nav{
  position:absolute;
  right:0;
  top:10px;
}
.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  background: #57c800;
  color:#fff;
  padding: 5px 20px;
  border-radius: 20px;
}

/* 히어로 섹션 */
.hero {
  background: url("hero-bg.jpg") no-repeat center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background: #57c800;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
}

/* 서비스 섹션 */
.services .cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.card {
  flex: 1;
  min-width: 240px;
  background: #37472a;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
 
}

/* 섹션 공통 */
.section {
  padding: 60px 0;
  color:#fff;
}
.section h2{
  text-align:center;
  font-size: 40px;
      background: linear-gradient(to right,#d5ffb8,#d5ffb8,#aef131);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section.services{
  text-align:center;
}
.section.services .container > p{
  margin-bottom:50px;
}
/* 문의 폼 */
.contact-form {
  display: grid;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #bbb;
  border-radius: 5px;
}

/* 푸터 */
.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
}





.faq {
    background: url(../image/texture1.jpg) no-repeat;
    background-position:center;
    background-size:cover;
}
.section.faq .container h2{
    font-size: 50px;
    color:#fff !important;
     background:none;
  -webkit-text-fill-color:#fff;
}
.center {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff55;
    color:#fff;
    backdrop-filter:blur(20px);
    border:1px solid #ffffff33;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: #ffffff00;
    border: none;
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Paperozi';
  color:#fff;
}
/* ✅ PC에서만 순서 반전 */
@media (min-width: 769px) {
    .image-section.reverse .image-text {
        order: 2;
    }

    .image-section.reverse .image-box {
        order: 1;
    }
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    padding: 0 20px;
}

.faq-answer p {
    padding: 15px 0;
}

.faq-question .icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* ì—´ë ¸ì„ ë•Œ íšŒì „ */
.faq-item.active .faq-question .icon {
    transform: rotate(315deg);
}


.info-section {
  padding: 80px 20px;
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.info-container.reverse {
  flex-direction: row-reverse;
}

.info-image {
  flex: 1;
}

.info-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.info-text {
  flex: 1;
  font-size: 17px;
  line-height: 1.8;
  color: #ffffff;
}

.info-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* 📱 태블릿 */
@media (max-width: 1024px) {
  .info-container {
    gap: 40px;
  }
}

/* 📱 모바일 */
@media (max-width: 768px) {
  .info-container,
  .info-container.reverse {
    flex-direction: column;
  }

  .info-text {
    font-size: 16px;
  }

  .info-section {
    padding: 60px 20px;
  }
}



.chart-wrap {
  width: 100%;
  max-width: 100%;
  position: relative;
}

canvas {
  width: 100%;
  height: 700px;
  background: #111827;
  border-radius: 12px;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

#tooltip {
  position: absolute;
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 6px;
  pointer-events: none;
  display: none;
}

.over-wrap{
  position:absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background:#00000088;
  text-align:center;
  align-content:center;
}
.over-wrap h2 img{
  width: 300px;
}
.over-wrap p{
  color:#fff;
  font-size: 44px;
  line-height: 60px;
}
.over-wrap p b{
  color:#57c800;
 
}
.over-wrap h5{
  font-size: 24px;
  color:#ffdb26;
   margin-top: 50px;
}
.over-wrap h6{
  color:#fff;
  font-size: 20px;
}
.over-wrap a{
  display:block;
  width:300px;
  margin:0 auto;
  margin-top: 100px;
  font-size: 18px;
}
.over-wrap a:hover{
  background:#4c9c0e;
}
.alert-sec{
   background:#27460f;
   padding: 50px;
   color:#fff;
}



/* 반응형 */
@media all and (max-width:768px) {
  .hero h2 { font-size: 2rem; }
  .services .cards { flex-direction: column; }
  .nav a { margin-left: 10px; font-size: 14px; }
  .over-wrap p {font-size:24px;}
}
@media all and (max-width:480px) {
  .over-wrap p{font-size:20px; line-height:30px}
  .nav a{font-size: 11px;}
  .nav{ top:5px;}
}
/* 모바일 */
@media all and (max-width: 768px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
    .image-text h2{
        font-size: 30px;
    }
    .image-text p{
        font-size:16px;
        line-height:24px;
    }
    .hero .container h1,
    .reviews h2,
    .faq h2{
        font-size: 36px !important;
    }
    .faq-question{
        font-size: 18px !important;
    }
    .reviews h2{
        margin-bottom: 20px;
    }
    .image-section.reverse .image-text {
        order: 1;
    }
    
    .image-section.reverse .image-box {
        order: 2;
    }
}