body {
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
  color: #333;
  background: #f9f9f9;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
}

header {
  background-color: #1e3c72;
  color: white;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
}

.site-header {
  background-color: #1e3c72;
  color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 40px;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #cde1ff;
}


.logo-img {
  height: 40px;
}

.contact {
  background: #f0f0f0;
  padding: 2rem 1rem;
  text-align: center;
}

.map {
  margin-top: 1rem;
}


nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
}

.hero {
  background-color: #e3ecf7;
  padding: 4rem 1rem;
  text-align: center;
}

.services {
  padding: 3rem 1rem;
  background-color: #ffffff;
  text-align: center;
}

.services h3 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: #1e3c72;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background-color: #f5f7fa;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: #2a2a2a;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}


.services ul {
  list-style: none;
  padding: 0;
}

footer {
  background-color: #2a2a2a;
  color: white;
  text-align: center;
  padding: 1rem 0;
}
