body { 
    font-family: 'Product Sans', sans-serif; 
}

/* Dropdown Menu Desktop */
.nav-item {
    position: relative;
}
.nav-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #15803d; /* green-700 */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 50;
    padding: 0.5rem 0;
    border-radius: 0.25rem;
}
.nav-item:hover > .nav-submenu {
    display: block;
}
.nav-submenu .nav-item .nav-submenu {
    top: 0;
    left: 100%;
}
.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 0.875rem;
    text-decoration: none;
}
.nav-link:hover {
    background-color: #166534; /* green-800 */
}

/* Mobile Menu nested */
.mobile-submenu {
    padding-left: 1rem;
}

/* Typography untuk Halaman Statis (Prose) */
.prose {
    font-size: 1rem;
    line-height: 1.75;
}
.prose p {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}
.prose ul {
    list-style-type: disc;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-left: 1.625em;
}
.prose ol {
    list-style-type: decimal;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-left: 1.625em;
}
.prose li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
/* Nested lists */
.prose ol ol, .prose ul ul, .prose ol ul, .prose ul ol {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
}
.prose ol ol { list-style-type: lower-alpha; }
.prose ol ol ol { list-style-type: decimal; }
.prose ol ol ol > li::marker { content: counter(list-item) ") "; } /* 1) */
.prose ol ol ol ol { list-style-type: lower-alpha; }
.prose ol ol ol ol > li::marker { content: counter(list-item, lower-alpha) ") "; } /* a) */

/* Headings */
.prose h1, .prose h2, .prose h3, .prose h4 {
    color: #111827;
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3;
}
.prose h1 { font-size: 2.25em; }
.prose h2 { font-size: 1.5em; }
.prose h3 { font-size: 1.25em; }
.prose a {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 500;
}
.prose blockquote {
    font-weight: 500;
    font-style: italic;
    color: #4b5563;
    border-left-width: 0.25rem;
    border-left-color: #e5e7eb;
    quotes: "\201C""\201D""\2018""\2019";
    margin-top: 1.6em;
    margin-bottom: 1.6em;
    padding-left: 1em;
}
.prose strong {
    font-weight: 600;
    color: #111827;
}
