@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css');

/* 📌 기본 스타일 */
body {
    font-family: 'Noto Serif KR', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f8f8f8;
}

/* 📌 헤더 - 네비게이션과 로고 중앙 정렬 */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 20px;
    background-color: #fff;
    border-bottom: 2px solid #ddd;
    margin-bottom: 10px;
}

/* 📌 로고 크기 조절 (반응형) */
.logo img {
    max-width: 140px;
    height: auto;
}

/* 네비게이션 바 중앙 정렬 */
.nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.nav ul {
    list-style: none;
    display: flex;  /* 가로 정렬 */
    justify-content: center;  /* 가운데 정렬 */
    align-items: center;
    gap: 30px; /* 메뉴 사이 간격 */
    padding: 0;
    margin: 0;
    position: relative; /* 언더라인을 위한 기준 */
}

/* 네비게이션 링크 스타일 */
.nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 15px;
    position: relative;
    transition: color 0.3s ease-in-out;
    white-space: nowrap; /* 줄바꿈 방지 */
}

/* 동적 언더라인 (부드러운 효과) */
.underline {
    position: absolute;
    bottom: -5px; /* 글자 아래 간격 */
    height: 2px; /* 얇게 조정 */
    background-color: rgba(0, 0, 0, 0.5); /* 투명도 적용 */
    transition: all 0.3s ease-in-out;
    border-radius: 5px; /* 둥글게 */
}



/* 📌 네비게이션 호버 효과 */
.nav a:hover {
    color: #ff6600;
}

/* 📌 Hero 섹션 스타일 개선 */
.hero {
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.hero:hover {
    transform: translateY(-5px);
}

/* 📌 제목 스타일 (줄바꿈 강제) */
.hero h2 {
    font-size: 28px;
    font-weight: bold;
    color: #222;
    line-height: 1.4;
    word-break: keep-all;
    margin-bottom: 15px;
}

.hero h2 span.break-line {
    display: block;
}

.hero .highlight {
    color: #ff4500;
    font-weight: bold;
}

.hero p {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* 📌 버튼 스타일 개선 */
.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #ff7b00, #ff4500);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 8px rgba(255, 102, 0, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ff4500, #ff7b00);
    transform: scale(1.05);
}

/* 📌 주요 서비스 섹션 */
.service-section {
    width: 100%;
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
}

.service-title {
    margin-bottom: 20px;
}

.service-title h2 {
    font-size: 26px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.service-title p {
    font-size: 16px;
    color: #555;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .service-section {
        max-width: 90%;
    }

    .service-card {
        padding: 15px;
    }

    .service-title h2 {
        font-size: 22px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 14px;
    }
}

.service-card {
    border: 2px solid transparent;
    transition: border 0.3s ease-in-out;
}

.service-card:hover {
    border: 2px solid #0833f1;
}


/* 📌 서비스 이용료 섹션 스타일 */
.pricing-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f8f8;
}

.pricing-title {
    font-size: 26px;
    font-weight: bold;
    color: #222;
    margin-bottom: 5px;
}

.pricing-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* 📌 카드 스타일 */
.pricing-card {
    background: white;
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* 📌 카드 호버 효과 */
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* 📌 가격 및 제목 */
.pricing-plan {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 32px;
    font-weight: bold;
    color: #ff4500;
    margin-bottom: 20px;
}

/* 📌 목록 스타일 (아이콘 제거, 심플하게) */
.pricing-features {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.pricing-features li {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
}

/* 📌 링크 버튼 */
.pricing-link {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}

.pricing-link:hover {
    text-decoration: underline;
}

/* 📌 반응형 - 모바일 최적화 */
@media screen and (max-width: 480px) {
    .pricing-card {
        max-width: 90%;
        padding: 25px;
    }

    .pricing-price {
        font-size: 28px;
    }
}

.pricing-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


/* FAQ 섹션 스타일 */
.faq-section {
    max-width: 500px;
    margin: 50px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 타이틀 */
.faq-title {
    font-size: 20px;
    font-weight: bold;
    color: #6a1b9a;
    margin-bottom: 20px;
}

/* 질문 버튼 스타일 */
.faq-question {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Noto Serif KR', serif !important;
}

/* 질문 버튼 마우스 호버 효과 */
.faq-question:hover {
    background-color: #f3e5f5;
    box-shadow: 0 4px 10px rgba(106, 27, 154, 0.3);
}

/* 화살표 스타일 */
.arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* 답변 스타일 */
.faq-answer {
    display: none;
    background: #fafafa;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 5px;
    font-size: 14px;
    text-align: left;
}

/* 활성화된 질문 버튼 스타일 */
.faq-item.active .faq-question {
    background-color: #6a1b9a;
    color: white;
}

/* 활성화된 화살표 회전 */






/* HOWTOUSE HTML 페이지의 CSS */
/* 설치 가이드 전체 영역에 적용할 기본 폰트 */

/* 가이드 전체 컨테이너 */
 


.step-header {
    display: flex;
    align-items: center;
    background-color: #fdfdfd;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 16px 20px;  /* 내부 여백 추가 */
    gap: 12px;           /* ✅ 숫자와 제목 사이 간격 */
    font-size: 16px
  }
  

/* 단계별 박스 스타일 */
.step-box {
  display: flex;
  background-color: #fdfdfd;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* 숫자 박스 */
.step-number {
    width: 60px;
    background: linear-gradient(to bottom, #fbd4e4, #f1c7dc);
    color: #a10e55;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    padding: 16px 0;
    flex-shrink: 0;
  }
  

/* 오른쪽 텍스트 박스 */
.step-content {
  padding: 16px;
  text-align: left;
  flex: 1;
}

/* 제목 스타일 */
.step-title {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  

/* 설명 텍스트 */
.step-description {
    padding: 8px 20px 0 80px;  /* ✅ 왼쪽 들여쓰기 (숫자 + 간격 고려) */
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    text-align: left;
  }

/* 리스트 내부 스타일 */
.step-description ul {
  padding-left: 20px;
  margin: 0;
}

.step-description li {
  margin-bottom: 6px;
}

/* 링크 스타일 */
a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}