@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, body, html, div.paragraph, blockquote, fieldset, input { margin: 0; padding: 0; }
ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, body, html, p, blockquote, fieldset, input { margin: 0; padding: 0; }
a img { border: 0; }
a { text-decoration: none; transition: all 0.2s ease; }
#icontent_container { background: #f1f5f9; }
body { font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-size: 14px; color: #334155; line-height: 1.65; position:relative; background: #f1f5f9; }
.container { margin: 0 auto; width: 1100px; max-width: 95%; }

/* Top bar container - modern clean gray background */
#top-image {
  background: #1e293b !important;
  position: static !important;
  width: 100% !important;
  height: auto !important;
  padding-bottom: 0 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
}

/* Navigation & Logo Bar */
#nav-wrap {
  background: #1e293b;
  padding: 10px 0;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid #334155;
}
#nav-wrap .container table { width: 100%; border-collapse: collapse; }

#logo {
  vertical-align: middle;
  text-align: left;
  white-space: nowrap;
  width: 1%;
  padding-right: 25px;
}

.site-logo-brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
}

.site-logo-img {
  height: 48px !important;
  width: 48px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid #64748b !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  display: inline-block !important;
  vertical-align: middle !important;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.site-logo-brand:hover .site-logo-img {
  transform: scale(1.05);
  border-color: #38bdf8 !important;
}

.site-logo-text-group {
  display: inline-flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  text-align: left !important;
  line-height: 1.15 !important;
}

.site-logo-primary {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  letter-spacing: 0.8px !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4) !important;
  white-space: nowrap !important;
}

.site-logo-sub {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  color: #94a3b8 !important;
  letter-spacing: 0.3px !important;
  white-space: nowrap !important;
  transition: color 0.2s ease !important;
}

.site-logo-brand:hover .site-logo-primary {
  color: #38bdf8 !important;
}

.site-logo-brand:hover .site-logo-sub {
  color: #e2e8f0 !important;
}


#menu {
  vertical-align: middle;
  text-align: right;
}

/* Modern Navigation Menu */
.kantori-nav {
  list-style: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
}

.nav-item {
  position: relative;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #cbd5e1 !important;
  padding: 8px 14px !important;
  border-radius: 6px !important;
  white-space: nowrap !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

.nav-link:hover {
  color: #ffffff !important;
  background: #334155 !important;
}

.nav-item.active .nav-link {
  color: #38bdf8 !important;
  background: rgba(56, 189, 248, 0.12) !important;
  font-weight: 600 !important;
}

.dropdown-arrow {
  font-size: 9px !important;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.nav-item.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 8px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
  padding: 6px;
  margin-top: 4px;
  z-index: 1000;
  list-style: none !important;
  text-align: left;
}

.nav-item.has-dropdown:hover .dropdown-menu {
  display: block;
  animation: navFadeIn 0.15s ease-out forwards;
}

@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.dropdown-link {
  display: block !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #cbd5e1 !important;
  padding: 8px 12px !important;
  border-radius: 6px !important;
  transition: all 0.15s ease !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.dropdown-link:hover {
  color: #ffffff !important;
  background: #334155 !important;
  padding-left: 15px !important;
}

.dropdown-item.active .dropdown-link {
  color: #38bdf8 !important;
  background: rgba(56, 189, 248, 0.12) !important;
  font-weight: 600 !important;
}

.separate { display: none; }

/* Banner Section - clean & simple, no overlap */
#banner-wrap {
  display: none !important;
}

/* Call-to-action button in main section */
.checklist-cta-wrapper {
  margin: 18px 0 24px 0;
  text-align: left;
}

.checklist-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  text-decoration: none !important;
  letter-spacing: -0.2px;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.checklist-cta-btn:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
  color: #ffffff !important;
}

.checklist-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 13px;
}

/* Facebook Group CTA button */
.facebook-cta-wrapper {
  margin: 14px 0 18px 0;
  text-align: left;
}

.facebook-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1877f2;
  color: #ffffff !important;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.35);
  text-decoration: none !important;
  letter-spacing: -0.2px;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.facebook-cta-btn:hover {
  background: #166fe5;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.45);
  color: #ffffff !important;
}

.facebook-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #1877f2;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}



/* Page Content Flow - Completely static, NO overlapping */
.below-fold-wrapper {
  position: static !important;
  clear: both;
  top: 0 !important;
  margin: 30px auto 40px auto !important;
  width: 100%;
}
#page-wrap {
  background: transparent !important;
  position: static !important;
  clear: both;
}
#main-wrap {
  padding-top: 0 !important;
  position: static !important;
}
#main-wrap .container {
  padding: 40px;
  width: 1100px;
  max-width: 95%;
  box-sizing: border-box;
  min-height: 400px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.main-shadow { display: none; }

h2 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 14px;
}
div.paragraph, p {
  font-size: 14.5px;
  line-height: 1.75;
  padding: .4em 0;
  color: #334155;
}
a { color: #0284c7; }
a:hover { color: #0369a1; }

blockquote {
  font-style: italic;
  border-left: 4px solid #cbd5e1;
  margin: 12px 0;
  padding-left: 18px;
  line-height: 1.6;
  color: #64748b;
}

/* Footer */
#footer-wrap {
  background: #1e293b;
  color: #94a3b8;
  padding: 30px 0;
  margin-top: 40px;
  border-top: 1px solid #334155;
}
#footer-wrap .container {
  text-align: center;
  padding: 10px 0;
}
#footer-wrap div.paragraph, #footer-wrap p {
  color: #94a3b8;
  font-size: 13px;
}
#footer-wrap a { color: #38bdf8; }
#footer-wrap a:hover { color: #7dd3fc; }

div.paragraph ul, div.paragraph ol { padding-left: 2.5em !important; margin: 8px 0 !important; }
div.paragraph li { padding-left: 4px !important; margin: 4px 0 !important; }

#weebly-footer-signup-container-v3,
.footer-published-ab-powered-by,
.powered-by {
  display: none !important;
}

