/* 메인 콘텐츠 스타일 */
.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 큰 제목 스타일 */
.main-title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 30px;
  color: #007B42;
}
.main-title h1 a {
    text-decoration: none;
    color: #007B42;
}
/* 설명 텍스트 스타일 */
.desc-text {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #555;
}

/* 구매 방법 섹션 스타일 (세로 형식 + 화살표) */
.method-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* 카드와 화살표 간격 조정 */
  margin: 80px auto;
  max-width: 1200px;
}

.method-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 30px; /* 패딩 증가 */
  max-width: 700px; /* 카드 크기 증가 */
  width: 100%;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* 마우스 효과 추가 */
}

.method-card:hover {
  transform: translateY(-10px); /* 마우스 호버 시 위로 살짝 이동 */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); /* 그림자 강화 */
}

.method-card h3 {
  font-size: 28px; /* 폰트 크기 증가 */
  font-weight: bold;
  margin-bottom: 20px; /* 여백 증가 */
  color: #007B42;
}

.method-card p {
  font-size: 18px; /* 폰트 크기 증가 */
  line-height: 1.8;
  color: #555;
}

/* 화살표 스타일 (카드 밖 + 굵게) */
.arrow {
  text-align: center;
  font-size: 50px; /* 화살표 크기 증가 */
  font-weight: 900; /* 더 굵게 */
  color: #007B42;
  margin: 20px 0;
}

/* 버튼 스타일 (크기 증가) */
.buy-button {
  display: inline-block;
  background-color: #007B42;
  color: #fff;
  font-size: 24px; /* 폰트 크기 증가 */
  font-weight: bold;
  padding: 16px 32px; /* 패딩 증가 */
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 60px; /* 여백 증가 */
  margin-bottom: 80px; /* ✅ 아래쪽 여백 추가 */
}

.buy-button:hover {
  background-color: #005f33;
 }
@media(max-width: 768px) {
  .method-card {
    max-width: 100%;          /* 너비 제한 해제 또는 더 줄이기 */
    padding: 20px 10px;           /* 패딩 줄이기 또는 늘리기 */
  }
  /* 필요시 폰트 크기 조절 */
  .method-card h3 {
    font-size: 22px;
  }
  /* 기타 조절 가능 */
}