* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* overflow-x: hidden; */
}

body {
  /* font-family: 'Noto Sans KR', sans-serif; */
  font-family: 'Pretendard', sans-serif;  
  background-color: #346732;
  color: #FFFFFF;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background-color: #346732;
  margin-bottom: 200px;
  padding: 0 20px;
}

.inner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
}
ul {
  list-style: none;
  padding-left: 12px;
}

ul li {
  position: relative;
}

ul li:before {
  content: "•";
  color: #FFFFFF;
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 20px;
}

ul li.no-list:before {
  content: "";
}

table ul li:before {
  color: #346732;
}

.no-list {
  list-style-type: none;
  padding-left: 50px;
}

.no-list li:before {
  content: none;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}
.my-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

.text-title { font-size: 56px !important; }
.text-subtitle { font-size: 48px !important; }
.text-content { font-size: 32px !important; }
.text-content-md { font-size: 28px !important; }
.text-content-sm { font-size: 24px !important; }

.bold { font-weight: bold !important; }
.up { font-size: 1.2em; }

/* 반응형 폰트 크기 */
@media (max-width: 1600px) {
  .text-title { font-size: 64px !important; }
  .text-subtitle { font-size: 56px !important; }
  .text-content { font-size: 36px !important; }
  .text-content-md { font-size: 32px !important; }
  .text-content-sm { font-size: 28px !important; }
}

@media (max-width: 1200px) {
  .text-title { font-size: 52px !important; }
  .text-subtitle { font-size: 48px !important; }
  .text-content { font-size: 32px !important; }
  .text-content-md { font-size: 28px !important; }
  .text-content-sm { font-size: 24px !important; }
}

@media (max-width: 768px) {
  .text-title { font-size: 36px !important; }
  .text-subtitle { font-size: 32px !important; }
  .text-content { font-size: 20px !important; }
  .text-content-md { font-size: 18px !important; }
  .text-content-sm { font-size: 16px !important; }
}

@media (max-width: 480px) {
  .text-title { font-size: 28px !important; }
  .text-subtitle { font-size: 24px !important; }
  .text-content { font-size: 15px !important; }
  .text-content-md { font-size: 14px !important; }
  .text-content-sm { font-size: 12px !important; }
}



/* 히어로 섹션 */
.hero {
  position: relative;
  width: 100%;
  height: auto;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* 탭 메뉴 */
.tab-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  min-width: 240px;
  height: 90px;
  padding: 20px 30px;
  border: 3px solid #C0DDA5;
  border-radius: 100px;
  background: transparent;
  color: #C0DDA5;
  font-size: 26px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
  
}
.tab.sm {
  font-size: 22px;
}

.tab.active {
  background: #C0DDA5;
  color: #346732;
  font-weight: 700;
  border: none;
}

.tab:hover {
  background: #C0DDA5;
  color: #346732;
}

/* 섹션 공통 스타일 */
section {
  padding: 40px 0;
}

.section-title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
}

.section-subtitle {
  font-size: 56px;
  font-weight: 800;
  color: #EBFF54;
  margin-bottom: 10px;
  margin-top: 20px;
}

.section-title-under {
  font-size: 52px;
  text-decoration: underline;
  color: #C0DDA5;
}

/* .text-content {
  font-size: 80px;
  font-weight: 800;
  line-height: 0.94;
  margin-bottom: 40px;
} */

/* 테이블 스타일 */
.info-table {
  width: 100%;
  background: #E9F8DC;
  border-radius: 20px;
  overflow: hidden;
  margin: 15px 0 10px;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 20px;
  font-size: 32px;
  color: #346732;
  text-align: center;
  vertical-align: middle;
  border-right: 5px solid #346732;
}

.info-table th:last-child,
.info-table td:last-child {
  border-right: none;
}

.info-table thead th {
  background: #C0DDA5;
  font-size: 36px;
  font-weight: 600;
  border-bottom: 5px solid #346732;
}

.info-table tbody td {
  font-weight: 500;
  border-bottom: 3px solid #346732;
}

.info-table tbody tr:last-child td {
  border-bottom: none;
}

/* 그림그리기 테이블 */
.drawing-table {
  table-layout: fixed;
}

.drawing-table th:first-child,
.drawing-table td:first-child {
  width: 25%;
  max-width: 340px;
}

.drawing-table tbody tr:last-child td {
  vertical-align: middle;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* 심사기준 테이블 */
.criteria-table {
  margin-top: 10px;
}

.criteria-table th,
.criteria-table td {
  width: 20%;
}

/* 시상내역 테이블 */
.award-table {
  margin-top: 10px;
  table-layout: fixed;
}

.award-table th:nth-child(1),
.award-table td:nth-child(1) {
  width: 20%;
}

.award-table th:nth-child(2),
.award-table td:nth-child(2) {
  width: 15%;
}

.award-table th:nth-child(3),
.award-table td:nth-child(3) {
  width: 40%;
}

.award-table th:nth-child(4),
.award-table td:nth-child(4) {
  width: 25%;
}

.table-note {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.56;
  margin-top: 20px;
  opacity: 0.9;
}

/* CTA 버튼 */
.cta-button {
  display: flex;
  align-content: center;
  justify-content: center;
  background: #C0DDA5;
  color: #346732;
  font-size: 36px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 20px;
  text-align: center;
  margin: 60px auto;
  display: block;
  width: fit-content;
  max-width: 100%;
  min-width: 380px;
  height: 90px;
  transition: all 0.3s ease;
  position: sticky;
  bottom: 10%;
}

.cta-button:hover {
  background: #EBFF54;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(235, 255, 84, 0.4);
}

/* 플로팅 버튼 */
.floating-cta {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1000;
}

.floating-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  background: #C0DDA5;
  color: #346732;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(192, 221, 165, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid #346732;
}

.floating-cta a:hover {
  background: #EBFF54;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(235, 255, 84, 0.6);
}

.floating-cta a:active {
  transform: translateY(-1px);
}

.floating-cta a::before {
  content: "⬇";
  margin-right: 8px;
  font-size: 20px;
}

/* 무한 바운스 애니메이션 */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.floating-cta a {
  animation: bounce 2s infinite;
}

.floating-cta a:hover {
  animation: none;
}

.pc { display: block; }

/* 모바일 반응형 */
@media (max-width: 768px) {

  .pc { display: none; }

  .inner {
    padding: 0 10px;
  }

  section {
    padding: 15px 0;
  }

  .tab-box {
    gap: 10px;
    margin-bottom: 30px;
  }

  .tabs {
    gap: 10px;
  }

  .tab {
    min-width: auto;
    width: 100%;
    height: 55px;
    padding: 15px 20px;
    font-size: 16px;
    line-height: 1.4;
  }

  .tab.sm {
    font-size: 14px;
  }

  .section-title,
  .text-content {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 26px;
    margin-top: 20px;
  }

  .info-table {
    font-size: 14px;
    border-radius: 10px;
  }

  .info-table th,
  .info-table td {
    font-size: 14px;
    padding: 12px 10px;
    border-right: 3px solid #346732;
    border-bottom: 2px solid #346732;
  }

  .info-table thead th {
    font-size: 16px;
    padding: 12px 10px;
  }

  /* 그림그리기 테이블 - 스크롤 가능 */
  .drawing-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .drawing-table thead,
  .drawing-table tbody {
    display: table;
    width: 100%;
  }

  .drawing-table tr {
    display: table-row;
  }

  .drawing-table th,
  .drawing-table td {
    display: table-cell;
  }

  .drawing-table th:first-child,
  .drawing-table td:first-child {
    width: 100px;
    min-width: 100px;
  }

  .drawing-table td {
    min-width: 200px;
  }

  /* 심사기준 테이블 - 스크롤 가능 */
  .criteria-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .criteria-table thead,
  .criteria-table tbody {
    display: table;
    width: 100%;
  }

  .criteria-table tr {
    display: table-row;
  }

  .criteria-table th,
  .criteria-table td {
    display: table-cell;
    min-width: 80px;
  }

  /* 시상내역 테이블 - 스크롤 가능 */
  .award-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .award-table thead,
  .award-table tbody {
    display: table;
    width: 100%;
  }

  .award-table tr {
    display: table-row;
  }

  .award-table th,
  .award-table td {
    display: table-cell;
    min-width: 70px;
  }

  .award-table th:nth-child(1),
  .award-table td:nth-child(1) {
    width: 80px;
    min-width: 80px;
  }

  .award-table th:nth-child(2),
  .award-table td:nth-child(2) {
    width: 60px;
    min-width: 60px;
  }

  .award-table th:nth-child(3),
  .award-table td:nth-child(3) {
    width: 140px;
    min-width: 140px;
  }

  .award-table th:nth-child(4),
  .award-table td:nth-child(4) {
    width: 80px;
    min-width: 80px;
  }

  .table-note {
    font-size: 14px;
  }

  .cta-button {
    font-size: 24px;
    max-width: calc(100% - 40px);
    min-width: auto;
    width: 90%;
    height: 70px;
    margin: 40px auto;
    padding: 0 20px;
  }

  .floating-cta {
    top: 5%;
    right: 20px;
  }
  
  .floating-cta a {
    padding: 14px 24px;
    font-size: 14px;
  }

  ul {
    padding-left: 4px;
  }
  .no-list {
    padding-left: 0;
  }
  ul li:before {
    margin-right: 6px;
  }
}

/* 푸터 */
.footer {
  width: 100%;
  background: #C0DDA5;
  margin-top: 0;
}

.footer-content {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 50px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-text {
  color: #346732;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* 푸터 반응형 */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    padding: 30px 20px;
    gap: 15px;
    text-align: center;
  }

  .footer-text {
    font-size: 14px;
    line-height: 1.5;
  }
}