nav .main-menu a {
  font-weight: bold;
  color: #0074d9 !important;
  margin-right: 18px;
  letter-spacing: 0.5px;
}
nav .main-menu a:hover {
  color: #005fa3 !important;
  text-decoration: underline;
}

/* 메인 섹션 */
.main-hero {
  background: linear-gradient(90deg, #e3f0ff 0%, #f8fcff 100%);
  border-radius: 18px;
  padding: 32px 16px 24px 16px;
  margin-bottom: 32px;
  box-shadow: 0 4px 24px #c7d6e6;
  text-align: center;
}
.main-hero h2 {
  color: #003366;
  font-size: 2.2rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.main-hero .service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 24px 0 0 0;
  padding: 0;
  list-style: none;
}
.main-hero .service-list li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px #e0e0e0;
  padding: 12px 24px;
  font-size: 1.1rem;
  color: #003366;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-hero .service-list li::before {
  content: '✔';
  color: #0074d9;
  font-size: 1.2em;
  margin-right: 6px;
}

/* 이미지 갤러리 */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin: 24px 0;
}
.gallery a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px #b0b0b0;
  transition: transform 0.2s;
}
.gallery a:hover {
  transform: scale(1.04);
}
.gallery img {
  width: 220px;
  height: 150px;
  object-fit: cover;
  display: block;
}

/* 버튼 */
a.button, .main-btn {
  background: #0074d9;
  color: #fff !important;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  margin: 12px 0;
  display: inline-block;
  box-shadow: 0 2px 8px #b0b0b0;
  transition: background 0.2s;
}
a.button:hover, .main-btn:hover {
  background: #005fa3;
}

/* 섹션 구분 */
.section {
  margin: 36px 0 24px 0;
  padding: 24px 0;
  border-top: 1px solid #e0e0e0;
}

/* 반응형 */
@media (max-width: 600px) {
  .gallery img { width: 100vw; height: 120px; }
  .main-hero { padding: 18px 4px; }
  .main-hero h2 { font-size: 1.3rem; }
}
body {
  font-family: 'Noto Sans KR', '맑은 고딕', Arial, sans-serif;
  background: #f7fafd;
  color: #222;
  margin: 0;
  padding: 0;
}
header, .main-header {
  background: #0a4cff;
  color: #fff;
  padding: 24px 0 16px 0;
  text-align: center;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 12px #b0c6ff33;
}
.main-header h1 {
  font-size: 2.1rem;
  font-weight: 800;
  margin: 0 0 8px 0;
  letter-spacing: 1px;
}
.main-header .desc {
  font-size: 1.1rem;
  color: #e0eaff;
  margin-bottom: 8px;
}
.navbar {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 12px 0 0 0;
}
.navbar a {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 8px;
  background: #2563ff;
  transition: background 0.2s;
}
.navbar a:hover {
  background: #0036a3;
}
.card-section {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin: 24px 0;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px #b0c6ff33;
  padding: 24px 18px;
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 240px;
  text-align: center;
  margin: 0 0 12px 0;
}
.card h2 {
  color: #0a4cff;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.card p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 12px;
}
.big-btn {
  display: block;
  width: 100%;
  background: #0a4cff;
  color: #fff !important;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 12px;
  padding: 16px 0;
  margin: 18px 0 0 0;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px #b0c6ff33;
  transition: background 0.2s;
}
.big-btn:hover {
  background: #0036a3;
}
.sns-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 18px 0 0 0;
}
.sns-bar a {
  display: inline-block;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px #b0c6ff33;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 1.6rem;
  color: #0a4cff;
  transition: background 0.2s;
}
.sns-bar a:hover {
  background: #e0eaff;
}
@media (max-width: 600px) {
  .card-section { flex-direction: column; gap: 12px; }
  .card { min-width: 0; max-width: 100vw; }
  .main-header h1 { font-size: 1.3rem; }
}

h1, h2, h3 {
  color: #003366;
} 