/* 섹션 제목 */
.main-title h1 {
  text-align: center;
  color: #006400; /* 진한 초록색 (DarkGreen) */
  font-size: 48px;
  font-weight: bold;
}
.main-title h1 a {
  text-decoration: none;
  color: #006400;
}
.kinds-title, .kinds2-title {
  margin: 50px auto 30px auto;
  max-width: 1200px;
  padding: 0 20px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
.kinds-title span, .kinds2-title span {
  display: block;
  font-size: 20px;
  font-weight: normal;
  margin-top: 10px;
}

/* 본문 카드 스타일 (PC와 모바일 모두 깔끔하게 보이도록) */
.section-card {
  max-width: 1100px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-left: 40px; /* 왼쪽 공간 추가 */
}
.section-card img {
  width: 250px; /* 원하는 너비, 예를 들어 200px~300px 정도 */
  height: auto; /* 비율 유지 */
  object-fit: contain; /* 또는 cover, 필요에 따라 선택 */
  display: block;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
}
/* 텍스트 내용 */
.section-text {
  flex: 2 1 400px;
  font-size: 16px;
  line-height: 1.6;
  text-align: center; /* 텍스트도 가운데 정렬 */
}
.section-text h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 2px solid #007B42;
  padding-bottom: 4px;
}


/* 모바일 대응 */
@media (max-width: 768px) {
 .section-card {
    flex-direction: column;
    align-items: center;
  }
  .section-card img {
    max-width: 80%;
  }
  .section-text {
    max-width: 90%;
    text-align: center; /* 텍스트도 가운데 정렬 */
  }
}