.ai-banner {
    display: flex;             /* Đưa về một hàng ngang */
    flex-direction: row;       /* Đảm bảo là hàng ngang */
    align-items: center;       /* Căn giữa theo chiều dọc */
    justify-content: space-between;
    width: 100%;               /* Hiện full 100% web */
    padding: 5% 8%;            /* Padding theo tỷ lệ % */
    box-sizing: border-box;
    min-height: 400px;         /* Chiều cao tối thiểu */
    background-color: #e6ebf5;
}

/* Chia tỷ lệ theo % thay vì kích thước cố định */
.content-left-ai {
    flex: 0 0 50%;             /* Chiếm đúng 50% chiều ngang */
    /* z-index: 2; */
}

.content-right-ai {
    flex: 0 0 50%;             /* Chiếm 50% còn lại */
    display: flex;
    justify-content: center;
    position: relative;
}

.ai-illustration {
    width: 100%;               /* Ảnh co giãn theo div chứa */
    max-width: 600px;          /* Giới hạn để không bị vỡ ảnh trên màn hình quá lớn */
    height: auto;
    
    /* KỸ THUẬT QUAN TRỌNG: Làm nổi bật ảnh trên nền div */
    /* Multiply giúp xóa bỏ các vụn trắng li ti xung quanh ảnh tách nền chưa kỹ */
    mix-blend-mode: multiply;  
    
    /* Hiệu ứng đổ bóng bám theo hình dáng robot thay vì khung hình chữ nhật */
    filter: drop-shadow(20px 20px 40px rgba(0,0,0,0.1)); 
    
    display: block;
}

/* Typography co giãn theo màn hình */
.main-title-ai {
    font-size: clamp(1.8rem, 4vw, 3rem); /* Tự động chỉnh cỡ chữ */
    color: var(--blue-dark);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle-ai {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary {
    background: var(--blue-dark);
    color: white;
}

.btn-secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive cho điện thoại (Chuyển về cột khi màn hình nhỏ) */
@media (max-width: 768px) {
    .ai-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .content-left-ai, .content-right-ai {
        flex: 0 0 100%;
    }
    .button-group {
        justify-content: center;
    }
    .content-right-ai {
        margin-top: 30px;
    }
}