
    /* Section styling */
    .section-social {
        position: relative;
        z-index: 1;
    }

    /* Search Card */
    .search-card {
        background: #fafafa;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .search-input {
        width: 100%;
        padding: 12px 18px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .search-input:focus {
        outline: none;
        border-color: #2b7a42;
        box-shadow: 0 4px 12px rgba(43, 122, 66, 0.15);
    }

    .info-text {
        color: #666;
        font-weight: 600;
        font-size: 0.9rem;
    }

    /* Infografis Card */
    .infografis-card {
        border-radius: 12px;
        overflow: hidden;
        background: white;
        transition: all 0.4s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        min-height: 320px;
    }

    .card-image {
        position: relative;
        width: 100%;
        height: 240px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(43, 122, 66, 0);
        transition: all 0.3s ease;
    }

    .card-action {
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
    }

    .infografis-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 32px rgba(43, 122, 66, 0.2);
        border: 1px solid #2b7a42;
    }

    .infografis-card:hover .card-image img {
        transform: scale(1.05);
    }

    .infografis-card:hover .card-overlay {
        background: rgba(43, 122, 66, 0.15);
    }

    .btn-lihat {
        background-color: #2b7a42;
        color: white;
        border: none;
        padding: 10px 24px;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .btn-lihat:hover {
        background-color: #1a4d29;
        transform: translateY(-2px);
    }

    /* Pagination */
    .pagination-wrapper {
        background: #fafafa;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 15px;
    }

    nav[aria-label="Pagination"] {
        background: #fafafa;
        border-radius: 12px;
        padding: 20px;
    }

    .pagination-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .pagination-item {
        display: flex;
        align-items: center;
    }

    .pagination-item.disabled .pagination-link {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .pagination-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        height: 40px;
        padding: 8px 12px;
        border: 2px solid #e0e0e0;
        border-radius: 6px;
        background-color: white;
        color: #333;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 600;
        text-decoration: none;
        font-size: 0.95rem;
    }

    .pagination-link:hover:not(:disabled) {
        background-color: #f0f0f0;
        transform: translateY(-2px);
    }

    .pagination-prev,
    .pagination-next {
        min-width: 40px;
        padding: 8px 10px;
    }

    .pagination-btn {
        background-color: #fff;
        color: #333;
        border: 2px solid #e0e0e0;
        padding: 8px 16px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 600;
        font-size: 0.95rem;
        min-width: 40px;
        text-align: center;
    }

    .pagination-btn:hover:not(.active) {
        background-color: #f0f0f0;
        transform: translateY(-2px);
    }

    .pagination-btn.active {
        background-color: #2b7a42;
        color: white;
        border-color: #2b7a42;
    }

    .pagination-btn:active {
        transform: scale(0.95);
    }

    .pagination-info {
        text-align: center;
    }

    .pagination-info .info-text {
        color: #666;
        font-weight: 500;
        font-size: 0.95rem;
    }

    /* Grid Item Animation */
    .infografis-grid-item {
        animation: fadeInUp 0.6s ease-out backwards;
    }

    .infografis-grid-item:nth-child(1) { animation-delay: 0.1s; }
    .infografis-grid-item:nth-child(2) { animation-delay: 0.2s; }
    .infografis-grid-item:nth-child(3) { animation-delay: 0.3s; }
    .infografis-grid-item:nth-child(4) { animation-delay: 0.4s; }
    .infografis-grid-item:nth-child(5) { animation-delay: 0.5s; }
    .infografis-grid-item:nth-child(6) { animation-delay: 0.6s; }

    .infografis-grid-item.hidden {
        display: none;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 768px) {
        .search-input {
            font-size: 1rem;
        }

        .pagination-btn {
            padding: 6px 12px;
            font-size: 0.85rem;
        }

        .card-image {
            height: 180px;
        }
    }
