/* Import font dari Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather&display=swap');

/* Ganti font seluruh situs */
body, h1, h2, h3, h4, h5, h6, p, a, li, td, th {
  font-family: 'Merriweather', serif !important;
}

/* Styling teks paragraf agar mirip Medium */
p, li, td, th {
  line-height: 1.7;
  font-size: 17px;
  max-width: 700px;
  margin-bottom: 1.2em;
  color: #242424;
}

/* Warna tautan */
a {
  color: #0056b3;
  text-decoration: none;
}

a:hover {
  color: #003d80;
  text-decoration: underline;
}

/* Header halaman */
.page-header h1,
.page-header h2 {
  color: #333;
  font-weight: bold;
}

/* Navigasi */
.navbar {
  background-color: #001f3f !important;
}

.navbar a {
  color: #fff !important;
}

.p1, .p3 {
  line-height: 1.7;
  font-size: 17px;
  margin-bottom: 1.2em;
  max-width: 700px;
  color: #242424;
  font-family: 'Merriweather', serif;
}

ul {
  margin-left: 2em;
  margin-bottom: 1.5em;
}

ul li {
  line-height: 1.7;
  margin-bottom: 0.8em;
  font-size: 17px;
  max-width: 700px;
  color: #242424;
  font-family: 'Merriweather', serif;
}

.navbar {
  min-height: 90px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-brand {
  height: auto;
  padding: 0;
  display: flex;
  align-items: center;
}

.navbar-brand-logo img {
  max-height: 70px;
  width: auto;
  padding: 0 20px;
  object-fit: contain;
  display: block;
}