:root{--build-id:"8cb399f7-4375-4ef3-9628-411c29584b64";}
/* 공통 스타일 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Malgun Gothic", "맑은 고딕", sans-serif;
  background-color: #f9fbf7;
  color: #2e2e33;
  line-height: 1.6;
}

/* 헤더 */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0969da;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: #2e2e33;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #0969da;
}

/* 메인 콘텐츠 */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2e2e33;
}

.hero p {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background-color: #0969da;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #0757b8;
}

/* 섹션 */
section {
  background-color: #ffffff;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}

h1 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #2e2e33;
}

h2 {
  font-size: 1.875rem;
  margin-bottom: 1.25rem;
  color: #2e2e33;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2e2e33;
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* 그리드 레이아웃 */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: #f9fbf7;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.card h3 {
  color: #0969da;
  margin-bottom: 1rem;
}

/* 리스트 */
ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

/* 테이블 */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

th {
  background-color: #f9fbf7;
  font-weight: 600;
  color: #2e2e33;
}

/* 폼 */
form {
  max-width: 600px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button[type="submit"] {
  background-color: #0969da;
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

button[type="submit"]:hover {
  background-color: #0757b8;
}

/* FAQ */
.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  color: #0969da;
  margin-bottom: 0.75rem;
}

/* 후기 */
.review {
  background-color: #f9fbf7;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #0969da;
}

.review-author {
  font-weight: 600;
  color: #0969da;
  margin-top: 1rem;
}

/* 프로세스 단계 */
.process-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.process-step:last-child {
  border-bottom: none;
}

.step-number {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background-color: #0969da;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

/* 푸터 */
footer {
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 2rem;
  text-align: center;
  margin-top: 4rem;
}

footer p {
  color: #6b7280;
  margin-bottom: 1rem;
}

footer a {
  color: #0969da;
  text-decoration: none;
  margin: 0 0.5rem;
}

footer a:hover {
  text-decoration: underline;
}

/* 반응형 */
@media (max-width: 768px) {
  nav ul {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  h1 {
    font-size: 1.875rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}