/* 기본 설정 */
body {
  margin: 0;
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: #f7f9fb;
  color: #333;
  scroll-behavior: smooth;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url('bg-insurance.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero-text {
  background: rgba(0, 0, 0, 0.5);
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 720px;
}

.hero-text h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Vision Section */
.vision {
  background: linear-gradient(to bottom, #f9fafc, #eef3fa);
  padding: 6rem 1rem;
  text-align: center;
}

.vision h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  color: #1e293b;
}

.vision .sub {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

/* 서비스 카드 */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 4rem;
  text-align: left;
}

@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
  }
}

.service {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.service:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.service i {
  font-size: 1.5rem;
  background: #e0ebff;
  color: #3a6df0;
  padding: 0.8rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  display: inline-block;
}

.service h3 {
  margin: 0.5rem 0 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
}

.service p {
  font-size: 0.95rem;
  color: #555;
}

/* Footer */
.footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.footer p {
  margin: 0.5rem 0;
}

.footer strong {
  color: #fff;
}
