* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

:root {
  --primary: #1F2933;
  --secondary: #4B5563;
  --border: #E5E7EB;
  --accent: #7C9A92;
}

body {
  background: #ffffff;
  color: var(--primary);
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 26px;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary);
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: var(--accent);
}

/* HERO */
.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 720px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.subtitle {
  color: var(--secondary);
  margin-bottom: 36px;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  gap: 18px;
}

.btn {
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 0.9rem;
  text-decoration: none;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
}

.btn.secondary {
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn.primary:hover {
  background: #111827;
}

.btn.secondary:hover {
  background: #F3F4F6;
}

/* FOOTER */
.footer {
  padding: 26px 0;
  border-top: 1px solid var(--border);
}

.footer p {
  font-size: 0.8rem;
  color: var(--secondary);
  text-align: center;
}

section.container {
  max-width: 720px;
}

h2 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-top: 56px;
  letter-spacing: 0.02em;
}

p {
  line-height: 1.7;
}

.subtitle {
  max-width: 640px;
  margin: 0 auto;
}

hr {
  margin: 64px 0;
  border: none;
  border-top: 1px solid #E5E7EB;
}
body {
  background: #f2f2f2 !important;
}
/* ======================
   INSIGHT DETAIL PAGE
====================== */
.insight-detail {
  padding: 80px 20px;
  background-color: #ffffff;
}

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #2f7f6f;
  text-decoration: none;
  font-size: 0.9rem;
}

.back-link:hover {
  text-decoration: underline;
}

.insight-detail h1 {
  font-size: 2rem;
  margin: 15px 0 10px;
}

.insight-meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 30px;
}

.insight-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  max-width: 700px;
}
/* ======================
   CONTACT SECTION
====================== */
.contact-section {
  padding: 80px 20px;
  background-color: #f8faf9;
  text-align: center;
}

.contact-text {
  max-width: 600px;
  margin: 20px auto 30px;
  color: #444;
  line-height: 1.7;
}

.contact-info p {
  font-size: 0.95rem;
  color: #333;
  margin: 8px 0;
}
/* ======================
   CONTACT PAGE
====================== */
.contact-page {
  padding: 80px 20px;
  background-color: #ffffff;
}

.contact-page h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-intro {
  max-width: 600px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
}

.contact-details p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #333;
}

/* active navbar link */
.nav-links a.active {
  font-weight: 600;
}
/* ======================
   INSIGHT LIST PAGE
====================== */

.insight-list {
  padding: 80px 20px;
  background-color: #f8faf9;
}

.insight-intro {
  max-width: 700px;
  margin: 10px 0 40px;
  color: #444;
  line-height: 1.7;
}

/* Grid layout */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.insight-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

/* Tag */
.insight-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2f7f6f;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Title link */
.insight-card h3 {
  margin: 10px 0;
  font-size: 1.1rem;
}

.insight-card h3 a {
  text-decoration: none;
  color: #1f2933;
}

.insight-card h3 a:hover {
  color: #2f7f6f;
}

/* Description */
.insight-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}
.hero {
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-quote {
  font-style: italic;
  color: #5f6f7a;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-primary {
  padding: 12px 28px;
  background-color: #1f2a35;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
}

.btn-secondary {
  padding: 12px 28px;
  border: 1.5px solid #1f2a35;
  color: #1f2a35;
  text-decoration: none;
  border-radius: 8px;
}
.outputs-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.outputs-list li {
  margin-bottom: 0.75rem;
}

.outputs-list a {
  text-decoration: none;
  font-weight: 500;
  color: #1f2a35;
}

.outputs-list a:hover {
  text-decoration: underline;
}
.content {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.content h1 {
  margin-bottom: 1.5rem;
}

.intro {
  color: #5f6f7a;
  margin-bottom: 1.5rem;
}

.conference-list {
  padding-left: 1.2rem;
}

.conference-list li {
  margin-bottom: 1.5rem;
}
.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #5f6f7a;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}
.writing-figure {
  margin: 2.5rem 0;
}

.writing-figure img {
  width: 100%;
  max-width: 720px;
  display: block;
  margin-bottom: 0.6rem;
  border-radius: 8px;
}

.writing-figure figcaption {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
}
.closing-note {
  margin-top: 6rem;        /* JARAK JAUH DARI JUDUL TERAKHIR */
  font-size: 0.72rem;      /* lebih kecil lagi */
  color: #ccd1d9;          /* abu-abu pudar */
  line-height: 1.6;
  text-align: center;      /* biar terasa penutup */
}
