    body {
        font-family: 'Poppins', sans-serif;
        background: #fff;
        color: #1a1a1a;
        margin: 0;
        padding: 0;
    }

    h2 {
        font-size: 24px;
        font-weight: 700;
        padding-top: 50px;
        margin-bottom: 30px;
        border-bottom: 2px solid #007b9f;
        display: inline-block;
        padding-bottom: 5px;
        text-align: center;
        margin-left: 50%;
        transform: translateX(-50%);
    }

    /* Blog Grid */
    .blog-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 30px auto;
        padding: 0 20px;
    }

    .blog-item {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.2s ease;
    }

    .blog-item:hover {
        transform: translateY(-4px);
    }

    .blog-item img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .blog-content {
        padding: 15px;
    }

    .blog-date {
        color: #009688;
        font-weight: 600;
        font-size: 12px;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .blog-title {
        font-weight: 600;
        font-size: 17px;
        margin-bottom: 10px;
        color: #1a1a1a;
        line-height: 1.4;
    }

    .blog-desc {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
    }

    /* Pagination */
    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 40px 0;
        gap: 8px;
        flex-wrap: wrap;
    }

    .pagination button {
        border: 1px solid #ddd;
        background: #fff;
        color: #333;
        padding: 8px 14px;
        border-radius: 6px;
        cursor: pointer;
        transition: 0.2s;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
    }

    .pagination button:hover {
        background: #009688;
        color: #fff;
    }

    .pagination button.active {
        background: #009688;
        color: #fff;
        font-weight: 600;
    }

    .pagination button:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }

    .btn-read-more {
        font-size: 14px;
        color: #fff;
        font-weight: 500;
        text-decoration: none;
        background: #007b9f;
        padding: 5px 10px;
        border-radius: 5px;
        display: inline-block;
        margin-top: 8px;
        transition: background 0.3s ease;
    }

    .btn-read-more:hover {
        background: #005f7a;
        color: #fff;
    }

    .logo-part-primary {
        color: #007b9f;
    }

    .logo-part-secondary {
        color: #ffd55e;
    }

    .footer-simple {
        background-color: #f4f4f4;
        padding: 20px;
        text-align: center;
        margin-top: 50px;
    }

    .logo-link {
        text-decoration: none;
    }

    .nav-login-link {
        width: 100%;
        text-align: center;
        margin-top: 10px;
        display: block;
    }

    /* ======================================== NAVBAR ======================================== */
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 6%;
        background: white;
        color: #06284e;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .nav-btns {
        display: flex;
        gap: 10px;
    }

    .nav-btns-mobile {
        display: none;
    }

    .logo {
        font-weight: 700;
        font-size: 22px;
        display: flex;
        align-items: center;
    }

    nav ul {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 25px;
    }

    nav ul li a {
        text-decoration: none;
        color: #06284e;
        font-weight: 500;
        transition: color 0.2s;
    }

    nav ul li a:hover {
        color: #007b9f;
    }



    .menu-toggle {
        width: 28px;
        height: 22px;
        position: relative;
        cursor: pointer;
        display: none;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        z-index: 200;
    }

    .menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background: #007b9f;
        border-radius: 3px;
        transition: all 0.4s ease;
        transform-origin: center;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    @media (max-width: 768px) {
        header {
            flex-wrap: wrap;
        }

        nav {
            position: absolute;
            top: 65px;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-radius: 0 0 10px 10px;
            overflow: hidden;
            max-height: 0;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.4s ease;
            z-index: 150;
        }

        nav.active {
            max-height: 500px;
            opacity: 1;
            transform: translateY(0);
        }

        nav ul {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 0;
            width: 100%;
            margin: 0;
            padding: 0;
        }

        nav ul li a {
            display: block;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            width: 100%;
            text-align: center;
        }

        .menu-toggle {
            display: flex;
        }

        .nav-btns {
            display: none;
        }

        .nav-btns-mobile {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 15px 20px;
        }

        .btn {
            width: 100%;
            text-align: center;
        }
    }

    /* ====================== NAV SEARCH ====================== */
    .nav-search,
    .nav-search-mobile {
        display: flex;
        align-items: center;
    }

    .search-form {
        display: flex;
        align-items: center;
        background: #f4f4f4;
        border-radius: 30px;
        overflow: hidden;
        padding: 4px 10px;
    }

    .search-form input {
        border: none;
        background: transparent;
        outline: none;
        padding: 8px;
        width: 180px;
        font-size: 14px;
    }

    .search-form button {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 16px;
        color: #007b9f;
    }

    .search-form button {
        background: #007b9f;
        border: none;
        cursor: pointer;
        font-size: 16px;
        color: white;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease;
    }

    .search-form button:hover {
        background: #005f7a;
    }


    /* versi desktop */
    .nav-search-mobile {
        display: none;
    }

    /* versi mobile */
    @media (max-width: 768px) {
        .nav-search {
            display: none;
        }

        .nav-search-mobile {
            display: flex;
            justify-content: center;
            padding: 15px 20px;
        }

        .nav .search-form input {
            width: 100%;
        }
    }


    /* ====================== BLOG LIST (STYLE BARU DI BAWAH) ====================== */
    .blog-list-section {
        font-family: "Poppins", sans-serif;
        padding: 0px 6%;
        background: #fff;
        color: #06284e;
        /*      border-top: 2px solid #eee;*/
        margin-top: 0px;
    }

    .blog-list-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 30px;
        border-bottom: 2px solid #007b9f;
        display: inline-block;
        padding-bottom: 5px;
        text-align: center;
        margin-left: 50%;
        transform: translateX(-50%);
    }


    .blog-list {
        list-style: none;
        padding: 0;
        margin: 0;
        border-top: 1px solid #e0e0e0;
        max-width: 1000px;
        margin: 0 auto;
    }

    .blog-list li {
        display: grid;
        grid-template-columns: 160px 1fr auto;
        align-items: center;
        padding: 18px 0;
        border-bottom: 1px dashed #ddd;
        transition: all 0.2s ease;
    }

    .blog-list li:hover {
        background: #f9f9f9;
        transform: translateY(-1px);
    }

    .blog-list .date {
        font-size: 14px;
        color: #777;
    }

    .blog-list a {
        text-decoration: none;
        color: #06284e;
        font-weight: 600;
    }

    .blog-list a:hover {
        color: #007b9f;
    }

    .blog-list .read-more {
        font-size: 14px;
        color: #007b9f;
        font-weight: 500;
    }

    .blog-list .read-more:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .blog-list li {
            grid-template-columns: 1fr;
            gap: 6px;
        }

        .blog-list .read-more {
            text-align: right;
        }
    }



    /* ======== Layout dua kolom (rata atas + proporsi 80:20) ======== */
    .content-wrapper {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        /* ubah dari space-between ke center */
        gap: 50px;
        /* beri jarak tengah yang proporsional */
        max-width: 1200px;
        margin: 50px auto;
        padding: 0 4%;
        /* dikurangi biar kiri-kanan seimbang */
    }

    .left-content {
        flex: 0 0 80%;
        /* dikurangi sedikit dari 80% */
        background: #fff;
    }

    .right-sidebar {
        flex: 0 0 20%;
        /* diperlebar sedikit dari 20% */
        background: #fff;
        border-left: 1px solid #eee;
        padding-left: 20px;
        /* dikurangi dari 25px */
    }


    /* Ratakan judul agar sejajar */
    .blog-list-title,
    .right-sidebar h3 {
        margin-top: 0;
        padding-top: 0;
    }

    /* Hilangkan posisi tengah di h2 kiri biar sejajar dengan kanan */
    .blog-list-title {
        text-align: left;
        margin-left: 0;
        transform: none;
    }

    /* Style judul kanan biar sama tinggi & style-nya */
    .right-sidebar h3 {
        font-size: 24px;
        font-weight: 700;
        border-bottom: 2px solid #007b9f;
        display: inline-block;
        padding-bottom: 5px;
        margin-bottom: 30px;
    }

    /* Style daftar kiri */
    .blog-list {
        list-style: none;
        padding: 0;
        margin: 0;
        border-top: 1px solid #e0e0e0;
        max-width: 100%;
    }

    .blog-list li {
        display: grid;
        grid-template-columns: 160px 1fr auto;
        align-items: center;
        padding: 18px 0;
        border-bottom: 1px dashed #ddd;
        transition: all 0.2s ease;
    }

    .blog-list li:hover {
        background: #f9f9f9;
        transform: translateY(-1px);
    }

    /* Sidebar kanan */
    .recent-post {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
    }

    .recent-post img {
        width: 70px;
        height: 70px;
        border-radius: 8px;
        object-fit: cover;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    }

    .recent-info {
        display: flex;
        flex-direction: column;
    }

    .recent-date {
        font-size: 12px;
        color: #777;
        margin-bottom: 4px;
    }

    .recent-info a {
        font-size: 14px;
        font-weight: 600;
        color: #06284e;
        text-decoration: none;
        line-height: 1.4;
    }

    .recent-info a:hover {
        color: #007b9f;
    }

    /* --- Navigasi Next / Prev --- */
    .recent-pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .recent-pagination button {
        padding: 6px 14px;
        border: 1px solid #ccc;
        background: #fff;
        font-family: 'Poppins', sans-serif;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.3s;
    }

    .recent-pagination button:hover {
        background: #009688;
        color: white;
    }

    .recent-pagination button:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }

    /* Responsif */
    @media (max-width: 992px) {
        .content-wrapper {
            flex-direction: column;
        }

        .right-sidebar {
            border-left: none;
            padding-left: 0;
            border-top: 1px solid #eee;
            margin-top: 30px;
            padding-top: 20px;
        }
    }


    /* ===================== RESPONSIVE TAMBAHAN bagian keyword ===================== */

    /* Tablet (maks 992px) */
    @media (max-width: 992px) {
        .content-wrapper {
            flex-direction: column;
            gap: 30px;
        }

        .left-content,
        .right-sidebar {
            flex: 100%;
            border: none;
            padding: 0;
        }

        .blog-list-title,
        .right-sidebar h3 {
            text-align: center;
            font-size: 22px;
        }

        .recent-post img {
            width: 60px;
            height: 60px;
        }

        .blog-container {
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }

        h2 {
            font-size: 22px;
            margin-top: 20px;
        }
    }

    /* Mobile landscape (maks 768px) */
    @media (max-width: 768px) {
        .content-wrapper {
            padding: 0 5%;
        }

        .blog-list li {
            grid-template-columns: 1fr;
            gap: 8px;
            padding: 15px 0;
        }

        .blog-list .date {
            font-size: 13px;
        }

        .blog-list a {
            font-size: 20px;
        }

        .blog-list small {
            font-size: 13px;
            color: #666;
        }

        .blog-list .read-more {
            display: block;
            text-align: right;
            margin-top: 5px;
        }

        .recent-post img {
            width: 55px;
            height: 55px;
        }

        .recent-info a {
            font-size: 13px;
        }

        .right-sidebar h3 {
            font-size: 20px;
        }

        .blog-container {
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 18px;
        }

        .blog-item img {
            height: 160px;
        }

        .blog-content {
            padding: 12px;
        }

        .pagination button {
            padding: 6px 10px;
            font-size: 13px;
        }
    }

    /* Mobile kecil (maks 480px) */
    @media (max-width: 480px) {
        header {
            padding: 12px 5%;
        }

        .logo {
            font-size: 18px;
        }

        .blog-list-title,
        .right-sidebar h3 {
            font-size: 20px;
        }

        .blog-list li {
            padding: 12px 0;
        }

        .blog-list .date {
            font-size: 12px;
        }

        .blog-list a {
            font-size: 19px;
        }

        .blog-list small {
            font-size: 12px;
        }

        .recent-post img {
            width: 50px;
            height: 50px;
        }

        .recent-info a {
            font-size: 16px;
        }

        .blog-item img {
            height: 140px;
        }

        .blog-content {
            padding: 10px;
        }

        h2 {
            font-size: 20px;
        }

        .pagination {
            gap: 5px;
        }
    }


    /*------------------icon whatsapp di pojok kanan bawah-------------------*/
    .wa-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        text-decoration: none;
        display: flex;
        align-items: center;
        padding: 10px 15px;
        font-weight: 600;
        font-size: 16px;
        z-index: 9999;
        transition: all 0.3s ease;
    }

    .wa-float img {
        width: 188px;
        height: 75px;
        margin-right: 8px;
    }

    .wa-float:hover {
        transform: scale(1.05);
    }

    /* === RESPONSIVE ADJUSTMENTS === */
    @media (max-width: 1024px) {
        .wa-float {
            bottom: 50px;
            right: 25px;
        }

        .wa-float img {
            width: 160px;
        }
    }

    @media (max-width: 768px) {
        .wa-float {
            bottom: 40px;
            right: 20px;
        }

        .wa-float img {
            width: 154px;
        }
    }