<style>

/* ===== 공통 레이아웃 ===== */
.subsidy-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px;
  font-family: 'Noto Sans KR', sans-serif;
  line-height: 1.75;
  color: #222;
}

.highlight {
  background: #e8eeff;
  padding: 2px 7px;
  border-radius: 5px;
  font-weight: 700;
  color: #3a5bd9;
}

/* ===== 테이블 ===== */
.subsidy-wrap table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 15px;
}

.subsidy-wrap th {
  background: #5a7aff;
  color: #fff;
  padding: 11px 12px;
  text-align: center;
  font-weight: 600;
}

.subsidy-wrap td {
  padding: 10px 12px;
  border-bottom: 1px solid #e5e9f0;
  text-align: center;
  vertical-align: middle;
}

.subsidy-wrap tr:nth-child(even) td {
  background: #f5f7ff;
}

/* ===== 요약 박스 ===== */
.summary-box {
  background: #eef4ff;
  padding: 20px;
  border-radius: 16px;
  margin: 25px 0;
  box-shadow: 0 4px 12px rgba(108, 140, 255, 0.1);
}

.summary-box ul {
  padding-left: 20px;
}

/* ===== 카드 박스 ===== */
.card-box {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  margin: 20px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  border-top: 3px solid #6c8cff;
}

/* ===== 버튼 ===== */
.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #5a7aff;
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.25s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #3a58e8;
  transform: translateY(-2px);
}

.cta-center {
  text-align: center;
  margin: 30px 0;
}

/* ===== 주의 박스 ===== */
.warning-box {
  background: #fff5f5;
  border-left: 5px solid #ff5252;
  padding: 16px 20px;
  border-radius: 10px;
  margin: 25px 0;
  color: #7a2020;
}

/* ===== FAQ ===== */
.faq-box {
  background: #f9f9fb;
  padding: 20px;
  border-radius: 14px;
  margin: 15px 0;
  border-left: 4px solid #c5ceff;
}

/* ===== 내부링크 박스 ===== */
.link-box {
  background: #f0f4fa;
  padding: 16px 20px;
  border-radius: 14px;
  margin: 20px 0 150px;
  text-align: center;
}

.link-box p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.link-box a {
  color: #3a5bd9;
  text-decoration: underline;
  font-size: 14px;
}

/* ===== 모바일 최적화 ===== */
@media (max-width:768px) {
  .subsidy-wrap h1 {
    font-size: 22px;
  }

  .subsidy-wrap h2 {
    font-size: 19px;
  }

  .subsidy-wrap p,
  .subsidy-wrap td,
  .subsidy-wrap th {
    font-size: 14px;
  }

  .cta-btn {
    display: block;
    text-align: center;
  }
}

</style>