* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f8fbff;
  color: #2d3436;
  line-height: 1.6;
  overflow-x: hidden;
}
.background-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 10% 20%, rgba(9, 132, 227, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(0, 184, 148, 0.05) 0%, transparent 40%);
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}
.hero {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
  margin-bottom: 30px;
  border: 1px solid white;
}
.hero-image {
  width: 280px;
  height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
  border-radius: 20px;
}
.badge {
  background: #0984e3;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-content h1 {
  margin: 15px 0;
  font-size: 3.5rem;
  color: #2d3436;
  letter-spacing: -2px;
}
.stats-bar {
  display: flex;
  justify-content: space-around;
  background: #2d3436;
  color: white;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 40px;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin: 40px 0 20px;
}
.inquiry-box {
  background: white;
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
.ci-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0984e3;
  line-height: 1.4;
}
.loi-list {
  list-style: none;
  padding: 0;
}
.loi-list li {
  background: #f8f9fa;
  margin-bottom: 12px;
  padding: 15px;
  border-radius: 12px;
  transition: 0.3s;
}
.loi-list li:hover {
  background: #eef2f7;
}
.nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.nav-card {
  background: white;
  text-decoration: none;
  color: inherit;
  padding: 40px 25px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}
.card-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}
.nav-card h3 {
  margin: 10px 0;
  font-size: 1.2rem;
}
.nav-card p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0;
}
.nav-card:hover {
  transform: translateY(-15px);
  background: white;
  box-shadow: 0 20px 40px rgba(9, 132, 227, 0.15);
  border-color: #0984e3;
}
footer {
  text-align: center;
  margin-top: 80px;
  padding: 40px;
  color: #636e72;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, #0984e3, #00b894);
  border-radius: 10px;
}
@media (max-width: 768px) {
  .hero { flex-direction: column; text-align: center; padding: 30px; }
  .inquiry-grid { grid-template-columns: 1fr; }
  .hero-image { width: 150px; height: 150px; }
  .hero-content h1 { font-size: 2.5rem; }
}
.scroll a {
  color: white;
  text-decoration: none;
}

.scroll a:hover {
  cursor: pointer;
  text-decoration: underline;
}
