.project-content h1 {
    font-size: 1.875rem;
    /* 30px */
    font-weight: 700;
    color: #12338E;
    margin-bottom: 1.5rem;
}

.project-content h2 {
    font-size: 1.5rem;
    /* 24px */
    font-weight: 700;
    color: #12338E;
    margin-bottom: 1.25rem;
}

.project-content h3 {
    font-size: 1.25rem;
    /* 20px */
    font-weight: 600;
    color: #12338E;
    margin-bottom: 1rem;
}

.project-content h4 {
    font-size: 1.125rem;
    /* 18px */
    font-weight: 600;
    color: #12338E;
    margin-bottom: 1rem;
}

.project-content h5 {
    font-size: 1rem;
    /* 16px */
    font-weight: 600;
    color: #12338E;
    margin-bottom: 0.75rem;
}

.project-content h6 {
    font-size: 0.875rem;
    /* 14px */
    font-weight: 600;
    color: #12338E;
    margin-bottom: 0.75rem;
}

.project-content p {
    margin-bottom: 1.5rem;
    color: #374151;
    /* gray-700 */
    line-height: 1.75;
}

.project-content ul,
.project-content ol {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

/* === UL dengan ikon custom === */
.project-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    color: #1f2937;
    /* gray-800 */
    line-height: 1.6;
}

.project-content ul li::before {
    content: "";
    width: 1.25rem;
    height: 1.25rem;
    background-color: #12338E;
    position: absolute;
    left: 0;
    top: 0.4rem;
    mask: url("data:image/svg+xml;utf8,<svg fill='white' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'><path d='M10 18a8 8 0 100-16 8 8 0 000 16zm-1-5l5-5-1.4-1.4L9 10.2 7.4 8.6 6 10l3 3z'/></svg>") no-repeat center / contain;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg fill='white' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'><path d='M10 18a8 8 0 100-16 8 8 0 000 16zm-1-5l5-5-1.4-1.4L9 10.2 7.4 8.6 6 10l3 3z'/></svg>") no-repeat center / contain;
}

/* === OL dengan nomor === */
.project-content ol {
    counter-reset: list-counter;
}

.project-content ol li {
    counter-increment: list-counter;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    color: #1f2937;
    line-height: 1.6;
}

.project-content ol li::before {
    content: counter(list-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 600;
    color: #12338E;
    font-size: 1rem;
    width: 1.5rem;
    text-align: right;
}