:root {
  --lt-bg: #f3f0ea;
  --lt-surface: #ffffff;
  --lt-ink: #1e252e;
  --lt-muted: #546170;
  --lt-accent: #0e7c86;
  --lt-accent-dark: #0a5f67;
  --lt-border: #e2dbd1;
  --lt-shadow: 0 18px 45px rgba(33, 45, 60, 0.08);
}

body {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  background: var(--lt-bg);
  color: var(--lt-ink);
}

a {
  color: var(--lt-accent);
  text-decoration: none;
}

a:hover {
  color: var(--lt-accent-dark);
}

.navbar {
  background: var(--lt-surface);
  border-bottom: 1px solid var(--lt-border);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--lt-ink);
}

.navbar-nav .nav-link {
  color: var(--lt-muted);
  font-weight: 500;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--lt-ink);
}

.hero {
  padding: 75px 0 65px;
}

.hero-box {
  background: linear-gradient(120deg, rgba(14, 124, 134, 0.12), rgba(255, 255, 255, 0.95));
  border: 1px solid var(--lt-border);
  border-radius: 26px;
  padding: 40px;
  box-shadow: var(--lt-shadow);
}

.hero-box h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-box p {
  color: var(--lt-muted);
  max-width: 650px;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--lt-accent);
  border-color: var(--lt-accent);
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 600;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.lt-card {
  background: var(--lt-surface);
  border: 1px solid var(--lt-border);
  border-radius: 18px;
  padding: 22px;
  height: 100%;
}

.lt-card h3,
.lt-card h4 {
  font-weight: 600;
}

.lt-card p,
.lt-card li {
  color: var(--lt-muted);
}

.list-dot {
  list-style: none;
  padding-left: 0;
}

.list-dot li {
  padding-left: 24px;
  margin-bottom: 10px;
  position: relative;
}

.list-dot li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--lt-accent);
  font-size: 1.4rem;
  line-height: 0.9rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.category-item {
  border: 1px solid var(--lt-border);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
}

.category-item h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.category-item ul {
  padding-left: 18px;
  margin-bottom: 0;
  color: var(--lt-muted);
}

.article-card {
  background: var(--lt-surface);
  border: 1px solid var(--lt-border);
  border-radius: 16px;
  padding: 20px;
  height: 100%;
}

.article-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 24px;
}

footer {
  border-top: 1px solid var(--lt-border);
  padding: 28px 0;
  color: var(--lt-muted);
  font-size: 0.95rem;
}

footer a {
  color: var(--lt-muted);
}

footer a:hover {
  color: var(--lt-ink);
}

@media (max-width: 768px) {
  .hero-box {
    padding: 28px;
  }
}
