.banner-container {
    max-width: 1200px;
    margin: 48px auto;
    padding: 0 24px;
    font-family: 'Inter', sans-serif;
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Mendorong konten teks ke kanan */
    
    /* Memasang gambar utuh Anda sebagai background penuh */
    background-image: url('/assets/img/landing_page/bg_panduan_layanan.png');
    background-size: cover; /* Memastikan gambar menutup seluruh area banner */
    background-position: center left; /* Menjaga fokus ilustrasi tetap aman di kiri */
    background-repeat: no-repeat;
    
    border-radius: 24px;
    min-height: 260px; /* Menjaga tinggi banner agar proporsional */
    padding: 40px 60px; /* Padding kanan agak tebal agar teks tidak terlalu mepet ke ujung */
}

.banner-content {
    width: 60%; /* Membatasi lebar teks agar tidak menabrak ilustrasi di sebelah kiri */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.banner-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.3;
}

.banner-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Tombol Download */
.btn-banner-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FBBF24;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: background-color 0.2s ease, transform 0.1s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
}

.btn-banner-download:hover {
    background-color: #F59E0B;
    transform: translateY(-2px);
}

/* Responsive untuk HP */
@media (max-width: 768px) {
    .cta-banner {
        justify-content: center;
        padding: 40px 24px;
        background-position: center; /* Menyeimbangkan posisi background di layar kecil */
    }

    .banner-content {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .banner-title {
        font-size: 20px;
    }

    .btn-banner-download {
        width: 100%;
        justify-content: center;
    }
}
