    .cta-section {
        background-color: #1a4d45;
        padding: 100px 20px;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: ''; position: absolute; top: -100px; right: -100px;
        width: 600px; height: 600px;
        background: radial-gradient(circle, rgba(234,180,101,0.1) 0%, rgba(26,77,69,0) 70%);
        border-radius: 50%; pointer-events: none;
    }

    .cta-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative; z-index: 2;
    }

    .cta-header-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 50px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .cta-title-group h2 {
        font-family: 'Istok Web', serif;
        font-size: 3.5rem;
        font-weight: 700;
        color: white;
        margin: 0;
        line-height: 1.1;
    }

    .cta-title-group span {
        display: block;
        color: #eab465;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .cta-filters {
        display: flex;
        gap: 10px;
    }

    .filter-btn {
        background: transparent;
        border: 1px solid rgba(255,255,255,0.3);
        color: rgba(255,255,255,0.7);
        padding: 8px 20px;
        border-radius: 30px;
        cursor: pointer;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s;
    }

    .filter-btn:hover, .filter-btn.active {
        background: #eab465;
        border-color: #eab465;
        color: #1a4d45;
    }

    .cta-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
    }

    /* --- STYLE UPDATE: KARTU SEBAGAI LINK --- */
    .cta-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 320px;
        transition: transform 0.3s ease, background 0.3s ease, opacity 0.4s ease;
        cursor: pointer;

        /* Properti agar Link terlihat seperti Box */
        text-decoration: none !important;
        color: inherit;
        display: block;
    }

    .cta-card.hidden { display: none; }

    .cta-card:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.1);
        border-color: #eab465;
    }

    .cta-card-body {
        font-size: 1rem;
        line-height: 1.6;
        color: #e0e0e0;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .cta-card-date {
        font-size: 0.85rem;
        color: #eab465;
        margin-bottom: 25px;
        display: flex; align-items: center; gap: 8px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    @media (max-width: 768px) {
        .cta-header-row { flex-direction: column; align-items: flex-start; }
        .cta-title-group h2 { font-size: 2.5rem; }
    }