.maklumat-section {
    position: relative;
    overflow: hidden;
}

.maklumat-card {
    background: #ffffff;
    border: none;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.maklumat-image-container {
    height: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.maklumat-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.maklumat-card:hover .maklumat-image-container img {
    transform: scale(1.05);
}

.maklumat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2), transparent);
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.maklumat-title {
    font-weight: 800;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.maklumat-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.maklumat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.maklumat-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.maklumat-item:last-child {
    margin-bottom: 0;
}

.maklumat-item:hover {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-color: rgba(var(--bs-primary-rgb), 0.1);
    transform: translateX(5px);
}

.item-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    margin-top: 0.1rem;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(31, 41, 55, 0.2);
}

.item-text {
    flex-grow: 1;
    color: #4b5563;
    line-height: 1.6;
    font-size: 1rem;
}

.signature-section {
    margin-top: 3rem;
    text-align: right;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.signature-title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.signature-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary);
}

@media (max-width: 991.98px) {
    .maklumat-image-container {
        min-height: 250px;
        height: 300px;
    }

    .maklumat-title {
        font-size: 1.5rem;
    }
}